argos/dmp-frontend/src/app/dataset-profile-form/dataset-profile.router.ts

15 lines
291 B
TypeScript
Raw Normal View History

import { RouterModule, Routes } from '@angular/router';
import { FormComponent } from 'app/dataset-profile-form/form/form.component';
export const DatasetProfileRoutes: Routes = [
{
path: ':id',
component: FormComponent
},
{
path: '',
component: FormComponent
}
];