From 2e683211fb1b2a451843444790cd2f6df5b0b6c6 Mon Sep 17 00:00:00 2001 From: Ognjen Cirkovic Date: Mon, 28 Feb 2022 23:31:04 +0100 Subject: Dodat test projekat.Povezan front i back. --- .../TestAppOgnjen/FrontEnd/src/app/app-routing.module.ts | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 sandbox/TestAppOgnjen/FrontEnd/src/app/app-routing.module.ts (limited to 'sandbox/TestAppOgnjen/FrontEnd/src/app/app-routing.module.ts') diff --git a/sandbox/TestAppOgnjen/FrontEnd/src/app/app-routing.module.ts b/sandbox/TestAppOgnjen/FrontEnd/src/app/app-routing.module.ts new file mode 100644 index 00000000..6aeec2fd --- /dev/null +++ b/sandbox/TestAppOgnjen/FrontEnd/src/app/app-routing.module.ts @@ -0,0 +1,14 @@ +import { NgModule } from '@angular/core'; +import { RouterModule, Routes } from '@angular/router'; + +import { ListaComponent } from './lista/lista.component'; + +const routes: Routes = [ + {path:'lista',component:ListaComponent} +]; + +@NgModule({ + imports: [RouterModule.forRoot(routes)], + exports: [RouterModule] +}) +export class AppRoutingModule { } -- cgit v1.2.3