diff --git a/client/app/components/Main.jsx b/client/app/components/Main.jsx new file mode 100644 index 0000000..118bb50 --- /dev/null +++ b/client/app/components/Main.jsx @@ -0,0 +1,21 @@ +import React from 'react'; +import { HashRouter as Router, Route, Switch} from 'react-router-dom'; +import { createBrowserHistory } from 'history'; + +import SearchRequest from './SearchRequest.jsx'; +import Admin from './Admin.jsx'; +import NotFound from './NotFound.js'; + +export const history = createBrowserHistory(); + +const Main = () => ( + + + + + + + +) + +export default Main