RoomHeader.js 1.15 KB
Newer Older
Kim, Chaerin's avatar
Kim, Chaerin committed
1
const RoomHeader = () => {
Kim, Chaerin's avatar
Kim, Chaerin committed
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
  return (
    <div className="container">
      <div className="row">
        <div
          className=" col d-flex justify-content-space-between"
          style={{ backgroundColor: "#C4C4C4" }}
        >
          <img
            className="m-2 rounded-circle"
            src="/cherry.jpg"
            width="40"
            height="40"
          />
          <p
            className="m-2"
            style={{
              fontWeight: "bold",
              fontSize: "15px",
              whiteSpace: "pre-wrap",
            }}
          >
            <p>데계 재밌는 수학과</p> #ASV2AE98
          </p>
          <p className="m-2" style={{ fontWeight: "bold", fontSize: "20px" }}>
            회의
          </p>
          <button
            type="button"
            className="m-2 rounded"
            style={{
              height: "30px",
              fontWeight: "bold",
              backgroundColor: "#E8B7FF",
              color: "black",
              border: "1px #f4c1f2",
            }}
          >
            돌아가기
          </button>
Kim, Chaerin's avatar
Kim, Chaerin committed
41
        </div>
Kim, Chaerin's avatar
Kim, Chaerin committed
42
43
44
      </div>
    </div>
  );
Kim, Chaerin's avatar
Kim, Chaerin committed
45
46
47
};

export default RoomHeader;