User.js 2.08 KB
Newer Older
Kim, Chaerin's avatar
Kim, Chaerin committed
1
const User = () => {
Kim, Chaerin's avatar
Kim, Chaerin committed
2
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
30
31
32
33
34
35
36
37
38
39
  return (
    <div className="container">
      <div className="row">
        <div className="col" style={{ backgroundColor: "#DEC7F5" }}>
          <p
            className="m-2"
            style={{ fontWeight: "bold", color: "#4A4251", fontSize: "20px" }}
          >
            참여 중인 사용자
          </p>
          <div className="col m-3" xs={6} md={4}>
            <img
              src="/cherry.jpg"
              width="40"
              height="40"
              className="rounded-circle"
            />
            <img
              src="/cherry.jpg"
              width="40"
              height="40"
              className="rounded-circle"
            />
            <img
              src="/cherry.jpg"
              width="40"
              height="40"
              className="rounded-circle"
            />
          </div>
          <div className="col m-3" xs={6} md={4}>
            <img
              src="/cherry.jpg"
              width="40"
              height="40"
              className="rounded-circle"
            />
          </div>
Kim, Chaerin's avatar
Kim, Chaerin committed
40
        </div>
Kim, Chaerin's avatar
Kim, Chaerin committed
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
      </div>
      <div className="row">
        <div className="col" style={{ backgroundColor: "#BCB0C6" }}>
          <p
            className="m-2"
            style={{ fontWeight: "bold", color: "#4A4251", fontSize: "20px" }}
          >
            참여하고 있지 않은 사용자
          </p>
          <div className="col m-3" xs={6} md={4}>
            <img
              src="/cherry.jpg"
              width="40"
              height="40"
              className="rounded-circle"
            />
            <img
              src="/cherry.jpg"
              width="40"
              height="40"
              className="rounded-circle"
            />
            <img
              src="/cherry.jpg"
              width="40"
              height="40"
              className="rounded-circle"
            />
          </div>
          <div className="col m-3" xs={6} md={4}></div>
          <div className="col m-5"></div>
        </div>
      </div>
    </div>
  );
Kim, Chaerin's avatar
Kim, Chaerin committed
76
77
78
};

export default User;