Screen.js 694 Bytes
Newer Older
Kim, Chaerin's avatar
Kim, Chaerin committed
1
const Screen = () => {
seoyeon's avatar
seoyeon committed
2
3
  const user = '00'

Kim, Chaerin's avatar
Kim, Chaerin committed
4
5
6
  return (
    <div className="container">
      <div className="row">
seoyeon's avatar
seoyeon committed
7
8
9
10
11
12
13
14
15
16
17
18
19
        <div className="col mt-3 d-flex justify-content-space-between" style={{ backgroundColor: '#FCF4FF' }}>
          <img
            className="rounded-circle"
            src="/cherry.jpg"
            width="40px"
            height="40px"
          />
          <p
            className="m-2"
            style={{ fontWeight: 'bold', color: '#4A4251', fontSize: '20px' }}
          >
            {user}님이 화면공유중...
            <br />
Kim, Chaerin's avatar
Kim, Chaerin committed
20
21
          </p>
          <div className="col m-5"></div>
Kim, Chaerin's avatar
Kim, Chaerin committed
22
        </div>
Kim, Chaerin's avatar
Kim, Chaerin committed
23
24
25
26
      </div>
    </div>
  )
}
Kim, Chaerin's avatar
Kim, Chaerin committed
27

Kim, Chaerin's avatar
Kim, Chaerin committed
28
export default Screen