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.js9
1 files changed, 2 insertions, 7 deletions
diff --git a/src/client/react/App.js b/src/client/react/App.js
index b8bb301..d79826e 100644
--- a/src/client/react/App.js
+++ b/src/client/react/App.js
@@ -1,14 +1,9 @@
import React from 'react';
-import Search from './components/presentational/Search';
+import Search from './components/container/Search';
const App = () => (
<div>
- <Search
- onInput={() => {}}
- results={[
- { type: 's', name: '18561' },
- ]}
- />
+ <Search />
</div>
);