pracowniaapp2Front/src/app/app.module.ts

17 lines
314 B
TypeScript
Raw Normal View History

2020-01-13 17:08:31 +01:00
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { AppComponent } from './app.component';
@NgModule({
declarations: [
AppComponent
],
imports: [
BrowserModule
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }