cozy-rsvp/app/routes.js

13 lines
183 B
JavaScript

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