Newer
Older
import { RouterModule, Routes } from '@angular/router';
import { PageNotFoundComponent } from './components/shared/page-not-found/page-not-found.component';
import { CreatorModule } from './components/creator/creator.module';
import { ParticipantModule } from './components/participant/participant.module';
import { HomePageComponent } from './components/home/home-page/home-page.component';
path: '',
redirectTo: '/home',
pathMatch: 'full'
component: HomePageComponent
RouterModule.forRoot(routes)
],
exports: [
RouterModule