cozy-rsvp/app/routes.js

13 lines
184 B
JavaScript

import { publicView, dashboardView } from './views';
export default [
{
path: '/',
component: publicView
},
{
path: '/dashboard',
component: dashboardView
}
]