From e8fbc9a8bea132e27981d68e7fe51409beca31ac Mon Sep 17 00:00:00 2001 From: dphaener Date: Thu, 1 Dec 2016 07:34:00 -0800 Subject: [PATCH] Remove dead code This repo was extracted from another project, and there was a remnant of some code from the other project. This removes the Navigation component from the main app component. Fixes #1 --- client/src/App.jsx | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) 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}
;