RoomList.js 247 Bytes
Newer Older
Kim, Chaerin's avatar
Kim, Chaerin committed
1
2
3
4
5
import AddRoom from "./AddRoom";
import RoomSingle from "./RoomSingle";

const RoomList = () => {
  return (
우지원's avatar
우지원 committed
6
    <div>
Kim, Chaerin's avatar
Kim, Chaerin committed
7
      <AddRoom />
우지원's avatar
우지원 committed
8
      <div className="mb-3">
우지원's avatar
우지원 committed
9
10
11
        <RoomSingle />
      </div>
    </div>
Kim, Chaerin's avatar
Kim, Chaerin committed
12
13
14
15
  );
};

export default RoomList;