Skip to content

Commit

Permalink
Create static container for selecting guesthouse ref #23
Browse files Browse the repository at this point in the history
  • Loading branch information
philawsophizing committed May 28, 2017
1 parent 6532679 commit 02643e7
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions src/containers/select_guesthouse.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
import React from 'react';

import Header from '../components/header.jsx';
import TextBox from '../components/text_box.jsx';
import SearchBar from '../components/search_bar.jsx';

const SelectGuesthouse = () =>
(
<div>
<Header />
<TextBox />
<SearchBar />
</div>
);

export default SelectGuesthouse;

0 comments on commit 02643e7

Please sign in to comment.