Added some shared components

This commit is contained in:
Erik Tiekstra
2021-03-16 16:09:02 +01:00
committed by Erik Tiekstra
parent 03ba526798
commit dfa1f1881d
21 changed files with 194 additions and 14 deletions

View File

@@ -2,10 +2,16 @@ import { DigiNgTypographyBaseModule } from '@af/digi-ng/_typography/typography-b
import { CommonModule } from '@angular/common';
import { NgModule } from '@angular/core';
import { RouterModule } from '@angular/router';
import { HorizontalCenterModule } from '@dafa-shared/components/horizontal-center/horizontal-center.module';
import { StartComponent } from './start.component';
@NgModule({
declarations: [StartComponent],
imports: [CommonModule, RouterModule.forChild([{ path: '', component: StartComponent }]), DigiNgTypographyBaseModule],
imports: [
CommonModule,
RouterModule.forChild([{ path: '', component: StartComponent }]),
DigiNgTypographyBaseModule,
HorizontalCenterModule,
],
})
export class StartModule {}