18 lines
629 B
TypeScript
18 lines
629 B
TypeScript
import { DigiNgTypographyBaseModule } from '@af/digi-ng/_typography/typography-base';
|
|
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,
|
|
HorizontalCenterModule,
|
|
],
|
|
})
|
|
export class StartModule {}
|