mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
12 lines
396 B
TypeScript
Executable file
12 lines
396 B
TypeScript
Executable file
import { NgModule } from '@angular/core';
|
|
import { BrowserModule } from '@angular/platform-browser';
|
|
|
|
import { AppComponent } from './app.component';
|
|
import { ExampleProgressbarComponent } from './progress-bar.component';
|
|
|
|
@NgModule({
|
|
imports: [ BrowserModule ],
|
|
declarations: [ AppComponent, ExampleProgressbarComponent ],
|
|
bootstrap: [ AppComponent ]
|
|
})
|
|
export class AppModule { }
|