2016-08-08 11:18:21 +09:00
|
|
|
import Telescope from 'meteor/nova:lib';
|
2016-06-15 11:07:30 +09:00
|
|
|
import Cheatsheet from './components/Cheatsheet.jsx';
|
2016-07-21 12:38:11 +09:00
|
|
|
import Groups from './components/Groups.jsx';
|
2016-06-15 11:07:30 +09:00
|
|
|
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},
|
2016-06-15 11:07:30 +09:00
|
|
|
{name: "settings", path: "/settings", component: Settings},
|
|
|
|
{name: "emails", path: "/emails", component: Emails},
|
|
|
|
]);
|