RoomHeader.js 711 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
  return (
우지원's avatar
우지원 committed
5
6
    <div
      className="d-flex justify-content-between align-items-center p-2"
seoyeon's avatar
ui0707    
seoyeon committed
7
      style={{ backgroundColor: '#C4C4C4', height: '60px' }}
우지원's avatar
우지원 committed
8
9
10
11
12
13
14
15
16
17
18
19
    >
      <div className="d-flex align-items-center">
        <img
          className="rounded-circle"
          src="/cherry.jpg"
          width="40px"
          height="40px"
        />
        <a
          className="p-3 ms-1 text-center text-decoration-none"
          style={{
            fontWeight: 'bold',
seoyeon's avatar
ui0707    
seoyeon committed
20
21
            fontSize: '20px',
            color: '#6c33a2',
우지원's avatar
우지원 committed
22
          }}
Kim, Chaerin's avatar
Kim, Chaerin committed
23
        >
seoyeon's avatar
ui0707    
seoyeon committed
24
          # 회의
우지원's avatar
우지원 committed
25
        </a>
Kim, Chaerin's avatar
Kim, Chaerin committed
26
27
      </div>
    </div>
seoyeon's avatar
0705    
seoyeon committed
28
29
  )
}
Kim, Chaerin's avatar
Kim, Chaerin committed
30

seoyeon's avatar
0705    
seoyeon committed
31
export default RoomHeader