Info.js 1.03 KB
Newer Older
이재연's avatar
aa    
이재연 committed
1
2
3
4
5
6
7
8
import userApi from "../../apis/user.api";

// const INIT_ACCOUNT = {
//   name: "",
//   id:"",
// }


이재연's avatar
이재연 committed
9

Kim, Chaerin's avatar
Kim, Chaerin committed
10
const Info = () => {
이재연's avatar
이재연 committed
11
  return (
이재연's avatar
이재연 committed
12
    <div className="container" style={{ background: "#FCF4FF" }}>
이재연's avatar
이재연 committed
13
      <div
이재연's avatar
이재연 committed
14
        className="row justify-content-center  my-4"
이재연's avatar
이재연 committed
15
16
17
18
19
20
        style={{ fontSize: "25px", fontWeight: "bold" }}
      >
        CHERRY #0805
      </div>
      <div className="row">
        <div className="col-3"></div>
이재연's avatar
이재연 committed
21
        <div className="col-6 my-2">
이재연's avatar
이재연 committed
22
23
24
25
26
27
28
29
30
31
32
          <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
33
        </div>
이재연's avatar
이재연 committed
34
35
36
37
        <div className="col"></div>
      </div>
    </div>
  );
Kim, Chaerin's avatar
Kim, Chaerin committed
38
39
40
};

export default Info;