mirror of
https://github.com/Raghu-Ch/angular-challenges.git
synced 2026-02-12 22:03:03 -05:00
feat(doc): move module to standalone
This commit is contained in:
11
apps/angular/module-to-standalone/src/app/app.module.ts
Normal file
11
apps/angular/module-to-standalone/src/app/app.module.ts
Normal file
@@ -0,0 +1,11 @@
|
||||
import { MainShellModule } from '@angular-challenges/module-to-standalone/shell';
|
||||
import { NgModule } from '@angular/core';
|
||||
import { BrowserModule } from '@angular/platform-browser';
|
||||
import { AppComponent } from './app.component';
|
||||
|
||||
@NgModule({
|
||||
declarations: [AppComponent],
|
||||
imports: [BrowserModule, MainShellModule],
|
||||
bootstrap: [AppComponent],
|
||||
})
|
||||
export class AppModule {}
|
||||
Reference in New Issue
Block a user