Files
doneit-web/src/app/modals/video-allowed/video-allowed-routing.module.ts
T

18 lines
372 B
TypeScript
Raw Normal View History

2021-11-22 13:53:37 +01:00
import { NgModule } from '@angular/core';
import { Routes, RouterModule } from '@angular/router';
import { VideoAllowedPage } from './video-allowed.page';
const routes: Routes = [
{
path: '',
component: VideoAllowedPage
}
];
@NgModule({
imports: [RouterModule.forChild(routes)],
exports: [RouterModule],
})
export class VideoAllowedPageRoutingModule {}