mirror of
https://github.com/vale981/Vulcan
synced 2025-03-08 19:11:38 -05:00
8 lines
383 B
JavaScript
8 lines
383 B
JavaScript
import { addRoute, getComponent } from 'meteor/vulcan:core';
|
|
|
|
addRoute([
|
|
{name: "cheatsheet", path: "/cheatsheet", component: getComponent("Cheatsheet")},
|
|
{name: "groups", path: "/groups", component: getComponent("Groups")},
|
|
{name: "settings", path: "/settings", component: getComponent("Settings")},
|
|
{name: "emails", path: "/emails", component: getComponent("Emails")},
|
|
]);
|