2017-07-13 14:43:22 +00:00
|
|
|
import { NgModule } from '@angular/core';
|
|
|
|
import { MaterialModule } from './material.module';
|
|
|
|
import { FlexLayoutModule } from '@angular/flex-layout';
|
|
|
|
import { FormsModule } from '@angular/forms';
|
|
|
|
import { CommonModule } from '@angular/common';
|
|
|
|
import { FuseMdSidenavHelperDirective, FuseMdSidenavTogglerDirective } from '../directives/md-sidenav-helper/md-sidenav-helper.directive';
|
2017-07-08 16:12:52 +00:00
|
|
|
|
|
|
|
@NgModule({
|
2017-07-13 14:43:22 +00:00
|
|
|
declarations: [
|
|
|
|
FuseMdSidenavHelperDirective,
|
|
|
|
FuseMdSidenavTogglerDirective
|
|
|
|
],
|
|
|
|
imports : [
|
2017-07-08 16:12:52 +00:00
|
|
|
FlexLayoutModule,
|
|
|
|
MaterialModule,
|
|
|
|
CommonModule,
|
|
|
|
FormsModule
|
|
|
|
],
|
2017-07-13 14:43:22 +00:00
|
|
|
exports : [
|
2017-07-08 16:12:52 +00:00
|
|
|
FlexLayoutModule,
|
|
|
|
MaterialModule,
|
|
|
|
CommonModule,
|
2017-07-13 14:43:22 +00:00
|
|
|
FormsModule,
|
|
|
|
FuseMdSidenavHelperDirective,
|
|
|
|
FuseMdSidenavTogglerDirective
|
|
|
|
]
|
2017-07-08 16:12:52 +00:00
|
|
|
})
|
2017-07-13 14:43:22 +00:00
|
|
|
|
2017-07-08 16:12:52 +00:00
|
|
|
export class SharedModule
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|