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

12 lines
506 B
React
Raw Normal View History

2016-08-08 11:18:21 +09:00
import Telescope from 'meteor/nova:lib';
import Cheatsheet from './components/Cheatsheet.jsx';
2016-07-21 12:38:11 +09:00
import Groups from './components/Groups.jsx';
import Settings from './components/Settings.jsx';
import Emails from './components/Emails.jsx';
Telescope.routes.add([
{name: "cheatsheet", path: "/cheatsheet", component: Cheatsheet},
2016-07-21 12:38:11 +09:00
{name: "groups", path: "/groups", component: Groups},
{name: "settings", path: "/settings", component: Settings},
{name: "emails", path: "/emails", component: Emails},
]);