RoomList.js 472 Bytes
Newer Older
Kim, Chaerin's avatar
Kim, Chaerin committed
1
import AddRoom from "./AddRoom";
우지원's avatar
0628    
우지원 committed
2
import HomeProfile from "./HomeProfile";
Kim, Chaerin's avatar
Kim, Chaerin committed
3
import RoomSingle from "./RoomSingle";
우지원's avatar
0628    
우지원 committed
4
5
6
import Title from "./Title";
import Line from "./Line";
import { Form } from 'react-bootstrap';
Kim, Chaerin's avatar
Kim, Chaerin committed
7
8
9

const RoomList = () => {
  return (
우지원's avatar
0628    
우지원 committed
10
11
12
13
14
    <Form style={{ backgroundColor: "#FCF4FF" }}>
      <Title />
      <Line />
      <HomeProfile />
      <Line />
Kim, Chaerin's avatar
Kim, Chaerin committed
15
      <AddRoom />
우지원's avatar
0628    
우지원 committed
16
17
18
      {/* <Line />
      <RoomSingle /> */}
    </Form>
Kim, Chaerin's avatar
Kim, Chaerin committed
19
20
21
22
  );
};

export default RoomList;