All Downloads are FREE. Search and download functionalities are using the official Maven repository.

skeleton.client.src.app.app-routing.module.ts Maven / Gradle / Ivy

import { NgModule } from '@angular/core';
import { Routes, RouterModule } from '@angular/router';
import {IndexComponent} from "./index/index.component";

const routes: Routes = [
  {path: '', redirectTo: 'index', pathMatch: 'full'},
  {path: 'index', component: IndexComponent}
];

@NgModule({
  imports: [RouterModule.forRoot(routes)],
  exports: [RouterModule]
})
export class AppRoutingModule { }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy