mirror of
https://github.com/vale981/Vulcan
synced 2025-03-09 12:16:37 -04:00
10 lines
No EOL
604 B
JavaScript
10 lines
No EOL
604 B
JavaScript
import { addRoute, getDynamicComponent } from 'meteor/vulcan:lib';
|
|
|
|
addRoute([
|
|
// {name: 'cheatsheet', path: '/cheatsheet', component: import('./components/Cheatsheet.jsx')},
|
|
{name: 'groups', path: '/groups', component: () => getDynamicComponent(import('../components/Groups.jsx'))},
|
|
{name: 'settings', path: '/settings', componentName: 'Settings'},
|
|
{name: 'settings', path: '/callbacks', componentName: 'Callbacks'},
|
|
// {name: 'emails', path: '/emails', component: () => getDynamicComponent(import('./components/Emails.jsx'))},
|
|
{name: 'emails', path: '/emails', componentName: 'Emails'},
|
|
]); |