Vulcan/packages/my-custom-package/lib/routes.jsx

10 lines
302 B
React
Raw Normal View History

/*
A new custom route for our custom page.
Browse to http://localhost:3000/my-custom-route to see it.
*/
2016-08-08 11:18:21 +09:00
import Telescope from 'meteor/nova:lib';
import MyCustomPage from './components/MyCustomPage.jsx';
Telescope.routes.add({name:"myCustomRoute", path:"/my-custom-route", component:MyCustomPage});