2019-06-22 22:23:02 +00:00
|
|
|
import * as React from 'react';
|
2019-06-23 00:45:32 +00:00
|
|
|
import { Route } from 'react-router-dom';
|
2019-06-22 22:23:02 +00:00
|
|
|
import DesignElements from '@/components/account/DesignElements';
|
2019-06-23 00:45:32 +00:00
|
|
|
import TransitionRouter from '@/TransitionRouter';
|
2019-06-22 22:23:02 +00:00
|
|
|
|
2019-06-23 00:45:32 +00:00
|
|
|
export default () => (
|
|
|
|
<TransitionRouter basename={'/account'}>
|
|
|
|
<Route path={'/'} component={DesignElements} exact/>
|
|
|
|
<Route path={'/design'} component={DesignElements} exact/>
|
|
|
|
</TransitionRouter>
|
|
|
|
);
|