15 lines
340 B
TypeScript
15 lines
340 B
TypeScript
import { Routes } from '@angular/router';
|
|
|
|
export const LEGAL_ROUTES: Routes = [
|
|
{
|
|
path: 'privacy',
|
|
loadComponent: () =>
|
|
import('./privacy/privacy.component').then((m) => m.PrivacyComponent),
|
|
},
|
|
{
|
|
path: 'terms',
|
|
loadComponent: () =>
|
|
import('./terms/terms.component').then((m) => m.TermsComponent),
|
|
},
|
|
];
|