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