2017-08-20 15:36:04 +09:00
|
|
|
import { addRoute, getDynamicComponent } from 'meteor/vulcan:core';
|
2016-06-15 11:07:30 +09:00
|
|
|
|
2016-12-12 11:12:41 +09:00
|
|
|
addRoute([
|
2017-08-20 15:36:04 +09:00
|
|
|
// {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'))},
|
|
|
|
]);
|