cozy-rsvp/app/routes.js

13 lines
184 B
JavaScript
Raw Normal View History

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