First Commit

This commit is contained in:
Yûki VACHOT 2021-10-16 15:23:46 +02:00
parent 41aa025490
commit 4dfd8cd516
41 changed files with 15479 additions and 2 deletions

18
src/app/app.module.ts Normal file
View file

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