1234567891011121314151617181920212223242526272829 |
- import Collections from '../pages/collections/Collections';
- import Connect from '../pages/connect/Connect';
- // import Console from '../pages/console/Console';
- import Overview from '../pages/overview/Overview';
- const RouterConfig = [
- {
- path: '/',
- component: Overview,
- auth: true,
- },
- {
- path: '/connect',
- component: Connect,
- auth: false,
- },
- {
- path: '/collections',
- component: Collections,
- auth: true,
- },
- // {
- // path: '/console',
- // component: Console,
- // auth: true,
- // },
- ];
- export default RouterConfig;
|