import { SdmTopbarControl } from "../../controls/SdmTopbarControl"; import { SdmSidebarContainerControlModule } from "./SdmSidebarContainerControlModule"; import { SdmTopbarContainerControlModule } from "./SdmTopbarContainerControlModule"; import { CommonModule } from "@angular/common"; import { NgModule } from "@angular/core"; import { FontAwesomeModule } from "@fortawesome/angular-fontawesome"; @NgModule({ imports: [CommonModule, FontAwesomeModule, SdmSidebarContainerControlModule, SdmTopbarContainerControlModule], declarations: [SdmTopbarControl], exports: [SdmTopbarControl], providers: [] }) export class SdmTopbarControlModule { }