RoomHeader.js 739 Bytes
Newer Older
Kim, Chaerin's avatar
Kim, Chaerin committed
1
import { Link } from "react-router-dom";
Kim, Chaerin's avatar
Kim, Chaerin committed
2

Kim, Chaerin's avatar
Kim, Chaerin committed
3
const RoomHeader = () => {
Kim, Chaerin's avatar
Kim, Chaerin committed
4
  return (
우지원's avatar
우지원 committed
5
6
    <div
      className="d-flex justify-content-between align-items-center p-2"
Kim, Chaerin's avatar
Kim, Chaerin committed
7
      style={{ backgroundColor: "#C4C4C4", height: "60px" }}
우지원's avatar
우지원 committed
8
9
10
    >
      <div className="d-flex align-items-center">
        <img
Kim, Chaerin's avatar
Kim, Chaerin committed
11
          alt="roomImg"
우지원's avatar
우지원 committed
12
13
14
15
16
17
18
19
          className="rounded-circle"
          src="/cherry.jpg"
          width="40px"
          height="40px"
        />
        <a
          className="p-3 ms-1 text-center text-decoration-none"
          style={{
Kim, Chaerin's avatar
Kim, Chaerin committed
20
21
22
            fontWeight: "bold",
            fontSize: "20px",
            color: "#6c33a2",
우지원's avatar
우지원 committed
23
          }}
Kim, Chaerin's avatar
Kim, Chaerin committed
24
        >
seoyeon's avatar
ui0707    
seoyeon committed
25
          # 회의
우지원's avatar
우지원 committed
26
        </a>
Kim, Chaerin's avatar
Kim, Chaerin committed
27
28
      </div>
    </div>
Kim, Chaerin's avatar
Kim, Chaerin committed
29
30
  );
};
Kim, Chaerin's avatar
Kim, Chaerin committed
31

Kim, Chaerin's avatar
Kim, Chaerin committed
32
export default RoomHeader;