Info.js 986 Bytes
Newer Older
이재연's avatar
이재연 committed
1
import User from "../Room/User";
이재연's avatar
이재연 committed
2

Kim, Chaerin's avatar
Kim, Chaerin committed
3
const Info = () => {
이재연's avatar
이재연 committed
4
  return (
이재연's avatar
이재연 committed
5
    <div className="container" style={{ background: "#FCF4FF" }}>
이재연's avatar
이재연 committed
6
      <div
이재연's avatar
이재연 committed
7
        className="row justify-content-center  my-4"
이재연's avatar
이재연 committed
8
9
10
11
12
13
        style={{ fontSize: "25px", fontWeight: "bold" }}
      >
        CHERRY #0805
      </div>
      <div className="row">
        <div className="col-3"></div>
이재연's avatar
이재연 committed
14
        <div className="col-6 my-2">
이재연's avatar
이재연 committed
15
16
17
18
19
20
21
22
23
24
25
          <h2 className="mb-3" style={{ fontSize: "13px", fontWeight: "bold" }}>
            이름
          </h2>
          <h2 className="mb-4 mt-2" style={{ fontSize: "25px", fontWeight: "bold" }} >김채린</h2>
          <h2
            className="mb-3 mt-2"
            style={{ fontSize: "13px", fontWeight: "bold" }}
          >
            전화번호
          </h2>
          <h2 className="mb-3 mt-2" style={{ fontSize: "25px", fontWeight: "bold" }}>010-8628-8984</h2>
Kim, Chaerin's avatar
Kim, Chaerin committed
26
        </div>
이재연's avatar
이재연 committed
27
28
29
30
        <div className="col"></div>
      </div>
    </div>
  );
Kim, Chaerin's avatar
Kim, Chaerin committed
31
32
33
};

export default Info;