mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-17 05:10:31 +00:00
24 lines
579 B
TypeScript
24 lines
579 B
TypeScript
// @ts-nocheck
|
|
import LazyLoader from '@/components/LazyLoader';
|
|
|
|
export default [
|
|
{
|
|
path: '/register/subscription',
|
|
component: LazyLoader({
|
|
loader: () => import('@/containers/Authentication/Register/RegisterSubscriptionForm'),
|
|
}),
|
|
},
|
|
{
|
|
path: '/register/organization',
|
|
component: LazyLoader({
|
|
loader: () => import('@/containers/Authentication/Register/RegisterOrganizationForm'),
|
|
}),
|
|
},
|
|
{
|
|
path: `/`,
|
|
component: LazyLoader({
|
|
loader: () => import('@/containers/Authentication/Register/RegisterUserForm'),
|
|
}),
|
|
},
|
|
];
|