aboutsummaryrefslogtreecommitdiff
path: root/src/client/react/App.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/client/react/App.js')
-rw-r--r--src/client/react/App.js15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/client/react/App.js b/src/client/react/App.js
new file mode 100644
index 0000000..b8bb301
--- /dev/null
+++ b/src/client/react/App.js
@@ -0,0 +1,15 @@
+import React from 'react';
+import Search from './components/presentational/Search';
+
+const App = () => (
+ <div>
+ <Search
+ onInput={() => {}}
+ results={[
+ { type: 's', name: '18561' },
+ ]}
+ />
+ </div>
+);
+
+export default App;