aboutsummaryrefslogtreecommitdiff
path: root/src/client/react/LandingPage.jsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/client/react/LandingPage.jsx')
-rw-r--r--src/client/react/LandingPage.jsx10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/client/react/LandingPage.jsx b/src/client/react/LandingPage.jsx
new file mode 100644
index 0000000..d79826e
--- /dev/null
+++ b/src/client/react/LandingPage.jsx
@@ -0,0 +1,10 @@
+import React from 'react';
+import Search from './components/container/Search';
+
+const App = () => (
+ <div>
+ <Search />
+ </div>
+);
+
+export default App;