funky-framadate-front/src/app/config/Routes.ts

13 lines
365 B
TypeScript
Raw Normal View History

import {FormContainerComponent} from '../form-container/form-container.component';
import {PageKindComponent} from '../pages/page-kind/page-kind.component';
/**
* each step in the form is a component inheriting from the base
*/
export const Routes =
[
{path: '', component: FormContainerComponent},
{path: 'step/1', component: PageKindComponent}
]
;