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

8 lines
261 B
JavaScript

/*
A new custom route for our custom page.
Browse to http://localhost:3000/my-custom-route to see it.
*/
import MyCustomPage from './components/MyCustomPage.jsx';
Telescope.routes.add({name:"myCustomRoute", path:"/my-custom-route", component:MyCustomPage});