mirror of
https://github.com/Raghu-Ch/angular-challenges.git
synced 2026-02-11 21:33:02 -05:00
12 lines
379 B
TypeScript
12 lines
379 B
TypeScript
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 {}
|