cozy-rsvp/app/routes.js
2016-11-04 15:38:35 -04:00

13 lines
183 B
JavaScript

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