type(fix): remove $FlowFixMe

This commit is contained in:
George Lima 2019-02-18 13:58:45 -03:00
parent 0f221d7319
commit 9d14c017ab
1 changed files with 7 additions and 30 deletions

View File

@ -55,39 +55,16 @@ export const RouterComponent = ({
<FullWrapper>
<HeaderComponent title={getTitle(location.pathname)} />
<ContentWrapper>
<SidebarContainer
location={location}
history={history}
/>
{/* $FlowFixMe */}
<SidebarContainer location={location} history={history} />
<LayoutComponent>
<ScrollTopComponent>
<Switch>
<Route
exact
path={DASHBOARD_ROUTE}
component={DashboardContainer}
/>
<Route
path={SEND_ROUTE}
component={SendContainer}
/>
<Route
path={RECEIVE_ROUTE}
component={ReceiveContainer}
/>
<Route
path={SETTINGS_ROUTE}
component={SettingsContainer}
/>
<Route
path={CONSOLE_ROUTE}
component={ConsoleView}
/>
<Route
path={TRANSACTIONS_ROUTE}
component={TransactionsContainer}
/>
<Route exact path={DASHBOARD_ROUTE} component={DashboardContainer} />
<Route path={SEND_ROUTE} component={SendContainer} />
<Route path={RECEIVE_ROUTE} component={ReceiveContainer} />
<Route path={SETTINGS_ROUTE} component={SettingsContainer} />
<Route path={CONSOLE_ROUTE} component={ConsoleView} />
<Route path={TRANSACTIONS_ROUTE} component={TransactionsContainer} />
<Route component={NotFoundView} />
</Switch>
</ScrollTopComponent>