aboutsummaryrefslogtreecommitdiff
path: root/src/client/react/LandingPage.jsx
diff options
context:
space:
mode:
authorNoah Loomans <noahloomans@gmail.com>2017-12-13 12:15:40 +0100
committerNoah Loomans <noahloomans@gmail.com>2017-12-13 12:15:40 +0100
commit58f69c010e55ded87dd5976a61a543183e26cba9 (patch)
tree150b8e44b7fa1daa073b3f8d4ad1fdff44fc9267 /src/client/react/LandingPage.jsx
parentb00e556ebff50558e6532683ff2763825c51646f (diff)
Add react-router to the mix
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;