Files
ProductKnowledge/client-web/src/app/app.module.ts

12 lines
305 B
TypeScript
Raw Normal View History

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