mirror of
https://github.com/vale981/Vulcan
synced 2025-03-07 02:21:43 -05:00
8 lines
261 B
JavaScript
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});
|