Vulcan/packages/vulcan-debug/lib/routes.jsx

9 lines
383 B
React
Raw Normal View History

2017-03-23 16:27:59 +09:00
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")},
]);