2020-03-12 13:31:36 +03:00
|
|
|
import { NgModule } from '@angular/core';
|
|
|
|
import { NbPopoverModule } from '@nebular/theme';
|
|
|
|
import { MaterialThemeLinkComponent } from './components/material-theme-link/material-theme-link.component';
|
|
|
|
import { CapitalizePipe } from './pipes/capitalize.pipe';
|
|
|
|
import { EvaIconsPipe } from './pipes/eva-icons.pipe';
|
|
|
|
import { RouterModule } from '@angular/router';
|
|
|
|
|
|
|
|
const component = [MaterialThemeLinkComponent];
|
|
|
|
const pipes = [CapitalizePipe, EvaIconsPipe];
|
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
imports: [RouterModule, NbPopoverModule],
|
|
|
|
declarations: [...component, ...pipes],
|
|
|
|
exports: [NbPopoverModule, ...component, ...pipes],
|
|
|
|
})
|
2020-03-24 16:06:05 +03:00
|
|
|
export class LandingSharedModule {}
|