diff --git a/client/src/App.jsx b/client/src/App.jsx index e194a8c..1765077 100644 --- a/client/src/App.jsx +++ b/client/src/App.jsx @@ -3,22 +3,16 @@ // Vendor import React from 'react'; -// Local -import Navigation from './components/shared/navigation'; - // Types export type AppInput = { - children: Object | Array, - router: Object + children: Object | Array }; // Main Component export const App = ({ - children, - router + children }: AppInput): React$Element => -
- +
{children}
;