Screen.js 516 Bytes
Newer Older
Kim, Chaerin's avatar
Kim, Chaerin committed
1
const Screen = () => {
Kim, Chaerin's avatar
Kim, Chaerin committed
2
  return (
우지원's avatar
0712    
우지원 committed
3
4
5
6
7
8
9
10
11
12
13
14
15
16
    <div>
      <div className="m-2 fs-6 d-flex align-items-center" style={{ color: '#4A4251', height:'30px' }}>
        <img
          className="rounded-circle"
          src="/cherry.jpg"
          width="30px"
          height="30px"
        />
        <a
          className="p-3 text-center text-decoration-none"
          style={{ color: '#4A4251' }}
        >
          CHERRY님의 화면공유중입니다
        </a>
Kim, Chaerin's avatar
Kim, Chaerin committed
17
18
19
20
      </div>
    </div>
  )
}
Kim, Chaerin's avatar
Kim, Chaerin committed
21

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