Files
WrenchBoardIonic2023/src/app/pages-family/playground/playground-routing.module.ts
T
CHIEFSOFT\ameye c2b36ead83 playground
2023-09-27 13:14:46 -04:00

18 lines
363 B
TypeScript

import { NgModule } from '@angular/core';
import { Routes, RouterModule } from '@angular/router';
import { PlaygroundPage } from './playground.page';
const routes: Routes = [
{
path: '',
component: PlaygroundPage
}
];
@NgModule({
imports: [RouterModule.forChild(routes)],
exports: [RouterModule],
})
export class PlaygroundPageRoutingModule {}