RoomHeader.js 1.11 KB
Newer Older
seoyeon's avatar
0705    
seoyeon committed
1
import { Link } from 'react-router-dom'
Kim, Chaerin's avatar
Kim, Chaerin committed
2

Kim, Chaerin's avatar
Kim, Chaerin committed
3
const RoomHeader = () => {
Kim, Chaerin's avatar
Kim, Chaerin committed
4
5
6
7
8
  return (
    <div className="container">
      <div className="row">
        <div
          className=" col d-flex justify-content-space-between"
seoyeon's avatar
0705    
seoyeon committed
9
          style={{ backgroundColor: '#C4C4C4' }}
Kim, Chaerin's avatar
Kim, Chaerin committed
10
11
12
13
14
15
16
17
18
19
        >
          <img
            className="m-2 rounded-circle"
            src="/cherry.jpg"
            width="40"
            height="40"
          />
          <p
            className="m-2"
            style={{
seoyeon's avatar
0705    
seoyeon committed
20
21
              fontWeight: 'bold',
              fontSize: '15px',
Kim, Chaerin's avatar
Kim, Chaerin committed
22
23
            }}
          >
seoyeon's avatar
0705    
seoyeon committed
24
25
26
27
28
29
30
31
32
33
34
            <p
              style={{
                overflow: 'hidden',
                textOverflow: 'ellipsis',
                whiteSpace: 'nowrap',
                width: '110px',
              }}
            >
              데계 재밌는 수학과
            </p>{' '}
            #ASV2AE985
Kim, Chaerin's avatar
Kim, Chaerin committed
35
          </p>
seoyeon's avatar
0705    
seoyeon committed
36
37
38
39
40
          <p
            className='mt-3'
            style={{ fontWeight: 'bold', fontSize: '20px', color: '#571e80' }}
          >
            Ch.회의
Kim, Chaerin's avatar
Kim, Chaerin committed
41
          </p>
Kim, Chaerin's avatar
Kim, Chaerin committed
42
        </div>
Kim, Chaerin's avatar
Kim, Chaerin committed
43
44
      </div>
    </div>
seoyeon's avatar
0705    
seoyeon committed
45
46
  )
}
Kim, Chaerin's avatar
Kim, Chaerin committed
47

seoyeon's avatar
0705    
seoyeon committed
48
export default RoomHeader