RoomPage.js 533 Bytes
Newer Older
Kim, Chaerin's avatar
Kim, Chaerin committed
1
2
3
4
5
6
import Header from '../components/Header'
import ChannelList from '../components/Room/ChannelList'
import RoomHeader from '../components/Room/RoomHeader'
import Screen from '../components/Room/Screen'
import User from '../components/Room/User'
import Controller from '../components/Room/Controller'
Kim, Chaerin's avatar
Kim, Chaerin committed
7
8
9
10

const RoomPage = () => {
  return (
    <div>
우지원's avatar
우지원 committed
11
12
      {/* <Header hamburger={ChannelList} /> */}
      <ChannelList />
Kim, Chaerin's avatar
Kim, Chaerin committed
13
14
15
16
17
      <RoomHeader />
      <Screen />
      <User />
      <Controller />
    </div>
Kim, Chaerin's avatar
Kim, Chaerin committed
18
19
  )
}
Kim, Chaerin's avatar
Kim, Chaerin committed
20

Kim, Chaerin's avatar
Kim, Chaerin committed
21
export default RoomPage