aboutsummaryrefslogtreecommitdiff
path: root/src/client/react/LandingPage.js
blob: 24e00781b69afd9f3b2658679a9fc48ad7affc10 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import React from 'react';
import PropTypes from 'prop-types';
import Search from './components/container/Search';

const App = ({ location }) => (
  <div>
    <Search location={location} />
  </div>
);

App.propTypes = {
  location: PropTypes.object.isRequired,
};

export default App;