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