mirror of
https://github.com/vale981/Vulcan
synced 2025-03-09 20:16:39 -04:00
5 lines
244 B
JavaScript
5 lines
244 B
JavaScript
import MoviesWrapper from './components/MoviesWrapper.jsx';
|
|
import { addRoute } from 'meteor/nova:core';
|
|
|
|
// add new "/movies" route that loads the MoviesWrapper component
|
|
addRoute({ name: 'movies', path: 'movies', component: MoviesWrapper });
|