import { CommonModule } from '@angular/common'; import { FormsModule } from '@angular/forms'; import { NgModule } from '@angular/core'; import { FormComponent } from './form/form.component'; import { SidebarComponent } from './sidebarcomponent/sidebar.component'; import { SidebarTestComponent } from './sidebarcomponent/sidebar2.component'; import { SidebarRoute } from './sidebar.routing'; import { FarrisSidebarModule } from '../../../../projects/sidebar/src/lib'; import { ShareModule } from 'src/app/share-module/share.module'; import { DatagridModule } from '@farris/ui-datagrid'; import { MarkdownModule } from 'ngx-markdown'; import { FResponseToolbarModule } from '@farris/ui-response-toolbar'; import { FarrisFormsModule } from '@farris/ui-forms'; @NgModule({ imports: [ CommonModule, FormsModule, FarrisSidebarModule, FarrisFormsModule, ShareModule, SidebarRoute, MarkdownModule, DatagridModule, FResponseToolbarModule ], exports: [SidebarTestComponent], declarations: [SidebarComponent, FormComponent,SidebarTestComponent], providers: [], entryComponents: [FormComponent ,SidebarTestComponent] }) export class SidebarModule { }