1
0
Fork 0
mirror of https://github.com/muerwre/vault-frontend.git synced 2025-04-25 12:56:41 +07:00

fixed test cells

This commit is contained in:
muerwre 2019-08-20 21:08:28 +07:00
parent ad517a9bfe
commit a4c771a664
4 changed files with 47 additions and 19 deletions

View file

@ -23,13 +23,10 @@ type IProps = typeof mapDispatchToProps & ReturnType<typeof mapStateToProps> & {
const Component: FC<IProps> = ({ is_shown }) => (
<ConnectedRouter history={history}>
<BlurWrapper is_blurred={is_shown}>
<Modal />
<Sprites />
<Switch>
<MainLayout>
<Modal />
<Sprites />
<Switch>
<Route exact path={URLS.BASE} component={FlowLayout} />
<Route path={URLS.EXAMPLES.IMAGE} component={ImageExample} />
@ -39,7 +36,6 @@ const Component: FC<IProps> = ({ is_shown }) => (
<Redirect to="/" />
</Switch>
</MainLayout>
</Switch>
</BlurWrapper>
</ConnectedRouter>
);