mirror of
https://github.com/Raghu-Ch/angular-challenges.git
synced 2026-02-13 06:13:03 -05:00
feat(challengestandalone): challenge standalone
This commit is contained in:
11
libs/module-to-standalone/shell/src/lib/main-shell.module.ts
Normal file
11
libs/module-to-standalone/shell/src/lib/main-shell.module.ts
Normal file
@@ -0,0 +1,11 @@
|
||||
import { provideToken } from '@angular-challenges/module-to-standalone/core/providers';
|
||||
import { NgModule } from '@angular/core';
|
||||
import { RouterModule } from '@angular/router';
|
||||
import { appRoutes } from './main-shell.routes';
|
||||
|
||||
@NgModule({
|
||||
imports: [RouterModule.forRoot(appRoutes)],
|
||||
exports: [RouterModule],
|
||||
providers: [provideToken('main-shell-token')],
|
||||
})
|
||||
export class MainShellModule {}
|
||||
Reference in New Issue
Block a user