aboutsummaryrefslogtreecommitdiff
path: root/src/client/react/LandingPage.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/client/react/LandingPage.js')
-rw-r--r--src/client/react/LandingPage.js15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/client/react/LandingPage.js b/src/client/react/LandingPage.js
deleted file mode 100644
index 24e0078..0000000
--- a/src/client/react/LandingPage.js
+++ /dev/null
@@ -1,15 +0,0 @@
-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;