User.js 1.2 KB
Newer Older
Kim, Chaerin's avatar
Kim, Chaerin committed
1
const User = () => {
Kim, Chaerin's avatar
Kim, Chaerin committed
2
3
4
  return (
    <div className="container">
      <div className="row">
seoyeon's avatar
0707 ui    
seoyeon committed
5
        <div className="col" style={{ backgroundColor: "#DEC7F5", position:'absolute', bottom:'58px'}}>
Kim, Chaerin's avatar
Kim, Chaerin committed
6
7
8
9
          <p
            className="m-2"
            style={{ fontWeight: "bold", color: "#4A4251", fontSize: "20px" }}
          >
seoyeon's avatar
0707 ui    
seoyeon committed
10
            화면공유 중인 사용자
Kim, Chaerin's avatar
Kim, Chaerin committed
11
12
13
14
15
16
          </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
      </div>
    </div>
  );
Kim, Chaerin's avatar
Kim, Chaerin committed
44
45
46
};

export default User;