19 lines
630 B
TypeScript
19 lines
630 B
TypeScript
import { NgModule } from '@angular/core';
|
|
import { RouterModule } from '@angular/router';
|
|
import { MatButtonModule } from '@angular/material/button';
|
|
import { MatIconModule } from '@angular/material/icon';
|
|
import { SharedModule } from 'app/shared/shared.module';
|
|
import { LandingHomeComponent } from 'app/modules/landing/home/home.component';
|
|
import { landingHomeRoutes } from 'app/modules/landing/home/home.routing';
|
|
|
|
@NgModule({
|
|
declarations: [LandingHomeComponent],
|
|
imports: [
|
|
RouterModule.forChild(landingHomeRoutes),
|
|
MatButtonModule,
|
|
MatIconModule,
|
|
SharedModule,
|
|
],
|
|
})
|
|
export class LandingHomeModule {}
|