mirror of
https://github.com/richard-loafle/fuse-angular.git
synced 2025-04-03 15:11:37 +00:00
55 lines
2.7 KiB
TypeScript
55 lines
2.7 KiB
TypeScript
import { NgModule } from '@angular/core';
|
|
import { RouterModule } from '@angular/router';
|
|
import { MatButtonModule } from '@angular/material/button';
|
|
import { MatIconModule } from '@angular/material/icon';
|
|
import { MatSidenavModule } from '@angular/material/sidenav';
|
|
import { FuseHighlightModule } from '@fuse/components/highlight';
|
|
import { FuseAlertModule } from '@fuse/components/alert';
|
|
import { FuseNavigationModule } from '@fuse/components/navigation';
|
|
import { FuseScrollResetModule } from '@fuse/directives/scroll-reset';
|
|
import { SharedModule } from 'app/shared/shared.module';
|
|
import { OtherComponentsComponent } from 'app/modules/admin/ui/other-components/other-components.component';
|
|
import { OverviewComponent } from 'app/modules/admin/ui/other-components/common/overview/overview.component';
|
|
import { LanguagesComponent } from 'app/modules/admin/ui/other-components/common/languages/languages.component';
|
|
import { MessagesComponent } from 'app/modules/admin/ui/other-components/common/messages/messages.component';
|
|
import { NotificationsComponent } from 'app/modules/admin/ui/other-components/common/notifications/notifications.component';
|
|
import { SearchComponent } from 'app/modules/admin/ui/other-components/common/search/search.component';
|
|
import { ShortcutsComponent } from 'app/modules/admin/ui/other-components/common/shortcuts/shortcuts.component';
|
|
import { UserComponent } from 'app/modules/admin/ui/other-components/common/user/user.component';
|
|
import { ApexChartsComponent } from 'app/modules/admin/ui/other-components/third-party/apex-charts/apex-charts.component';
|
|
import { FullCalendarComponent } from 'app/modules/admin/ui/other-components/third-party/full-calendar/full-calendar.component';
|
|
import { NgxMarkdownComponent } from 'app/modules/admin/ui/other-components/third-party/ngx-markdown/ngx-markdown.component';
|
|
import { QuillEditorComponent } from 'app/modules/admin/ui/other-components/third-party/quill-editor/quill-editor.component';
|
|
import { otherComponentsRoutes } from 'app/modules/admin/ui/other-components/other-components.routing';
|
|
|
|
@NgModule({
|
|
declarations: [
|
|
OtherComponentsComponent,
|
|
OverviewComponent,
|
|
LanguagesComponent,
|
|
MessagesComponent,
|
|
NotificationsComponent,
|
|
SearchComponent,
|
|
ShortcutsComponent,
|
|
UserComponent,
|
|
ApexChartsComponent,
|
|
FullCalendarComponent,
|
|
NgxMarkdownComponent,
|
|
QuillEditorComponent
|
|
],
|
|
imports : [
|
|
RouterModule.forChild(otherComponentsRoutes),
|
|
MatButtonModule,
|
|
MatIconModule,
|
|
MatSidenavModule,
|
|
FuseHighlightModule,
|
|
FuseAlertModule,
|
|
FuseNavigationModule,
|
|
FuseScrollResetModule,
|
|
SharedModule
|
|
]
|
|
})
|
|
export class OtherComponentsModule
|
|
{
|
|
}
|