RoomHeader.js 1.01 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
  return (
우지원's avatar
우지원 committed
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
    <div
      className="d-flex justify-content-between align-items-center p-2"
      style={{ backgroundColor: '#C4C4C4', height: "60px" }}
    >
      <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',
            fontSize: '15px',
            overflow: 'scroll',
            whiteSpace: 'nowrap',
            width: '280px',
            color: '#000000',
          }}
Kim, Chaerin's avatar
Kim, Chaerin committed
26
        >
우지원's avatar
우지원 committed
27
28
          데계데계데계데계데계데계데계데계데계데계 재밌는 수학과
        </a>
Kim, Chaerin's avatar
Kim, Chaerin committed
29
      </div>
우지원's avatar
우지원 committed
30
31
32
33
34
35
      <a
        className="text-decoration-none"
        style={{ fontWeight: 'bold', fontSize: '20px', color: '#6c33a2' }}
      >
        # 회의
      </a>
Kim, Chaerin's avatar
Kim, Chaerin committed
36
    </div>
seoyeon's avatar
0705    
seoyeon committed
37
38
  )
}
Kim, Chaerin's avatar
Kim, Chaerin committed
39

seoyeon's avatar
0705    
seoyeon committed
40
export default RoomHeader