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

Kim, Chaerin's avatar
Kim, Chaerin committed
3
const RoomHeader = () => {
Kim, Chaerin's avatar
Kim, Chaerin committed
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
  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>
Kim, Chaerin's avatar
Kim, Chaerin committed
30
        </div>
Kim, Chaerin's avatar
Kim, Chaerin committed
31
32
33
      </div>
    </div>
  );
Kim, Chaerin's avatar
Kim, Chaerin committed
34
35
36
};

export default RoomHeader;