13 lines
183 B
JavaScript
13 lines
183 B
JavaScript
import { publicView, dashboardView } from './views'
|
|
|
|
export default [
|
|
{
|
|
path: '/',
|
|
component: publicView
|
|
},
|
|
{
|
|
path: '/dashboard',
|
|
component: dashboardView
|
|
}
|
|
]
|