RoomHeader.js 986 Bytes
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
  return (
    <div className="container">
      <div className="row">
        <div
seoyeon's avatar
seoyeon committed
8
          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
        >
          <img
seoyeon's avatar
seoyeon committed
12
            className="mt-3 m-2 rounded-circle"
Kim, Chaerin's avatar
Kim, Chaerin committed
13
14
15
16
17
            src="/cherry.jpg"
            width="40"
            height="40"
          />
          <p
seoyeon's avatar
seoyeon committed
18
            className="m-4"
Kim, Chaerin's avatar
Kim, Chaerin committed
19
            style={{
seoyeon's avatar
0705    
seoyeon committed
20
21
              fontWeight: 'bold',
              fontSize: '15px',
seoyeon's avatar
seoyeon committed
22
              overflow: 'scroll',
seoyeon's avatar
seoyeon committed
23
              whiteSpace: 'nowrap',
seoyeon's avatar
seoyeon committed
24
              width: '150px'
Kim, Chaerin's avatar
Kim, Chaerin committed
25
26
            }}
          >
seoyeon's avatar
seoyeon committed
27
28
29
30
31
32
33
            데계 재밌는 수학과qwerqwerqew
          </p>
          <p
            className="m-4"
            style={{ fontWeight: 'bold', fontSize: '20px', color: '#6c33a2' }}
          >
            # 회의
Kim, Chaerin's avatar
Kim, Chaerin committed
34
          </p>
Kim, Chaerin's avatar
Kim, Chaerin committed
35
        </div>
Kim, Chaerin's avatar
Kim, Chaerin committed
36
37
      </div>
    </div>
seoyeon's avatar
0705    
seoyeon committed
38
39
  )
}
Kim, Chaerin's avatar
Kim, Chaerin committed
40

seoyeon's avatar
0705    
seoyeon committed
41
export default RoomHeader