1
0

angular and node server

This commit is contained in:
Anthony Sgueglia
2020-03-25 12:20:01 -04:00
commit ca168ac9e2
41 changed files with 22743 additions and 0 deletions

16
src/app/app.module.ts Normal file
View File

@@ -0,0 +1,16 @@
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 { }