RoomPage.js 491 Bytes
Newer Older
Kim, Chaerin's avatar
Kim, Chaerin committed
1
2
3
4
5
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
6
7
8
9

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

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