graycoreio/daffodil

View on GitHub
apps/design-land/src/app/hero/hero-routing.module.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { NgModule } from '@angular/core';
import {
  Routes,
  RouterModule,
} from '@angular/router';

import { DesignLandHeroComponent } from './hero.component';

export const heroRoutes: Routes = [
  { path: '', component: DesignLandHeroComponent },
];

@NgModule({
  imports: [
    RouterModule.forChild(heroRoutes),
  ],
  exports: [
    RouterModule,
  ],
})
export class DesignLandHeroRoutingModule {}