RoomHeader.js 1.16 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
  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
        >
seoyeon's avatar
seoyeon committed
11
12
13
14
15
16
          {/* <p
            className="mt-4 me-4"
            style={{ fontWeight: 'bold', fontSize: '20px', color: '#571e80' }}
          >
            # 회의
          </p> */}
Kim, Chaerin's avatar
Kim, Chaerin committed
17
          <img
seoyeon's avatar
seoyeon committed
18
            className="mt-3 m-2 rounded-circle"
Kim, Chaerin's avatar
Kim, Chaerin committed
19
20
21
22
23
24
25
            src="/cherry.jpg"
            width="40"
            height="40"
          />
          <p
            className="m-2"
            style={{
seoyeon's avatar
0705    
seoyeon committed
26
27
              fontWeight: 'bold',
              fontSize: '15px',
Kim, Chaerin's avatar
Kim, Chaerin committed
28
29
            }}
          >
seoyeon's avatar
0705    
seoyeon committed
30
31
32
33
34
            <p
              style={{
                overflow: 'hidden',
                textOverflow: 'ellipsis',
                whiteSpace: 'nowrap',
seoyeon's avatar
seoyeon committed
35
36
                width: '150px',
                color: '#420ba2'
seoyeon's avatar
0705    
seoyeon committed
37
38
              }}
            >
seoyeon's avatar
seoyeon committed
39
              # 회의
seoyeon's avatar
0705    
seoyeon committed
40
            </p>{' '}
seoyeon's avatar
seoyeon committed
41
            데계 재밌는 수학과
Kim, Chaerin's avatar
Kim, Chaerin committed
42
          </p>
Kim, Chaerin's avatar
Kim, Chaerin committed
43
        </div>
Kim, Chaerin's avatar
Kim, Chaerin committed
44
45
      </div>
    </div>
seoyeon's avatar
0705    
seoyeon committed
46
47
  )
}
Kim, Chaerin's avatar
Kim, Chaerin committed
48

seoyeon's avatar
0705    
seoyeon committed
49
export default RoomHeader