cozy-rsvp/app/routes.js

13 lines
183 B
JavaScript
Raw Normal View History

2016-11-04 20:38:35 +01:00
import { publicView, dashboardView } from './views'
2016-11-04 20:33:20 +01:00
export default [
{
path: '/',
component: publicView
},
{
path: '/dashboard',
component: dashboardView
}
]