User.js 2.11 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
  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"
우지원's avatar
우지원 committed
17
              className="me-2 rounded-circle"
Kim, Chaerin's avatar
Kim, Chaerin committed
18
19
20
21
22
            />
            <img
              src="/cherry.jpg"
              width="40"
              height="40"
우지원's avatar
우지원 committed
23
              className="me-2 rounded-circle"
Kim, Chaerin's avatar
Kim, Chaerin committed
24
25
26
27
28
            />
            <img
              src="/cherry.jpg"
              width="40"
              height="40"
우지원's avatar
우지원 committed
29
              className="me-2 rounded-circle"
Kim, Chaerin's avatar
Kim, Chaerin committed
30
31
32
33
34
35
36
            />
          </div>
          <div className="col m-3" xs={6} md={4}>
            <img
              src="/cherry.jpg"
              width="40"
              height="40"
우지원's avatar
우지원 committed
37
              className="me-2 rounded-circle"
Kim, Chaerin's avatar
Kim, Chaerin committed
38
39
            />
          </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
      </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"
우지원's avatar
우지원 committed
55
              className="me-2 rounded-circle"
Kim, Chaerin's avatar
Kim, Chaerin committed
56
57
58
59
60
            />
            <img
              src="/cherry.jpg"
              width="40"
              height="40"
우지원's avatar
우지원 committed
61
              className="me-2 rounded-circle"
Kim, Chaerin's avatar
Kim, Chaerin committed
62
63
64
65
66
            />
            <img
              src="/cherry.jpg"
              width="40"
              height="40"
우지원's avatar
우지원 committed
67
              className="me-2 rounded-circle"
Kim, Chaerin's avatar
Kim, Chaerin committed
68
69
70
71
72
73
74
75
            />
          </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;