Main structure

+ BG Color
+ Fonts
This commit is contained in:
Felix
2020-12-24 14:58:51 +01:00
commit bbff4088cc
38 changed files with 14439 additions and 0 deletions

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

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