Skip to content

Commit

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

import Header from '../components/header.jsx';
import TextBox from '../components/text_box.jsx';
import Map from '../components/map.jsx';
import Footer from '../components/footer.jsx';

const MapRoute = () =>
(
<div>
<Header />
<TextBox />
<Map />
<Footer />
</div>
);

export default MapRoute;

0 comments on commit 4a0e260

Please sign in to comment.