Skip to content
Snippets Groups Projects
app.module.ts 298 B
Newer Older
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';

import { AppComponent } from './app.component';

@NgModule({
  declarations: [AppComponent],
Clayton, Brandon Scott's avatar
Clayton, Brandon Scott committed
  imports: [BrowserModule],
  providers: [],
  bootstrap: [AppComponent],
})
export class AppModule {}