RoomHeader.js 1.26 KB
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
          <Link to="/user">
            <button
              type="button"
              className="m-2 rounded"
              style={{
                height: "30px",
                fontWeight: "bold",
                backgroundColor: "#E8B7FF",
                color: "black",
                border: "1px #f4c1f2",
              }}
            >
              돌아가기
            </button>
          </Link>
Kim, Chaerin's avatar
Kim, Chaerin committed
45
        </div>
Kim, Chaerin's avatar
Kim, Chaerin committed
46
47
48
      </div>
    </div>
  );
Kim, Chaerin's avatar
Kim, Chaerin committed
49
50
51
};

export default RoomHeader;