mirror of
https://github.com/richard-loafle/fuse-angular.git
synced 2025-01-11 04:55:07 +00:00
33 lines
849 B
TypeScript
33 lines
849 B
TypeScript
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';
|
|
|
|
@NgModule({
|
|
declarations: [
|
|
FuseMdSidenavHelperDirective,
|
|
FuseMdSidenavTogglerDirective
|
|
],
|
|
imports : [
|
|
FlexLayoutModule,
|
|
MaterialModule,
|
|
CommonModule,
|
|
FormsModule
|
|
],
|
|
exports : [
|
|
FlexLayoutModule,
|
|
MaterialModule,
|
|
CommonModule,
|
|
FormsModule,
|
|
FuseMdSidenavHelperDirective,
|
|
FuseMdSidenavTogglerDirective
|
|
]
|
|
})
|
|
|
|
export class SharedModule
|
|
{
|
|
|
|
}
|