Info.js 1005 Bytes
Newer Older
이재연's avatar
이재연 committed
1

Kim, Chaerin's avatar
Kim, Chaerin committed
2
const Info = () => {
이재연's avatar
이재연 committed
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
  return (
    <div className="container-md vh-100" style={{ background: "#FCF4FF" }}>
      <div
        className="row justify-content-center  mx-1" 
        style={{ fontSize: "25px", fontWeight: "bold" }}
      >
        CHERRY #0805
      </div>
      <div className="row">
        <div className="col-3"></div>
        <div className="col-6 my-3">
          <form>
            <label
              className="form-label mb-3"
              style={{ fontSize: "13px", fontWeight: "bold" }}
            >
              이름
            </label>
            <input type="text" className="form-control" />
            <label
              className="form-label mb-3 mt-2"
              style={{ fontSize: "13px", fontWeight: "bold" }}
            >
              전화번호
            </label>
            <input type="text" className="form-control" />
          </form>
Kim, Chaerin's avatar
Kim, Chaerin committed
30
        </div>
이재연's avatar
이재연 committed
31
32
33
34
        <div className="col"></div>
      </div>
    </div>
  );
Kim, Chaerin's avatar
Kim, Chaerin committed
35
36
37
};

export default Info;