mirror of
https://github.com/MikroWizard/mikrofront.git
synced 2025-12-23 18:39:30 +00:00
MikroWizard Initial commit | MikroFront Welcome to the world :)
This commit is contained in:
commit
b97aec6b97
203 changed files with 41097 additions and 0 deletions
52
src/app/views/widgets/widgets.module.ts
Normal file
52
src/app/views/widgets/widgets.module.ts
Normal file
|
|
@ -0,0 +1,52 @@
|
|||
import { NgModule } from '@angular/core';
|
||||
import { CommonModule } from '@angular/common';
|
||||
|
||||
import {
|
||||
ButtonModule,
|
||||
CardModule,
|
||||
DropdownModule,
|
||||
GridModule,
|
||||
ProgressModule,
|
||||
SharedModule,
|
||||
WidgetModule
|
||||
} from '@coreui/angular';
|
||||
import { IconModule } from '@coreui/icons-angular';
|
||||
import { ChartjsModule } from '@coreui/angular-chartjs';
|
||||
|
||||
import { DocsComponentsModule } from '@docs-components/docs-components.module';
|
||||
|
||||
import { WidgetsRoutingModule } from './widgets-routing.module';
|
||||
import { WidgetsComponent } from './widgets/widgets.component';
|
||||
import { WidgetsBrandComponent } from './widgets-brand/widgets-brand.component';
|
||||
import { ChartSample, WidgetsDropdownComponent } from './widgets-dropdown/widgets-dropdown.component';
|
||||
import { WidgetsEComponent } from './widgets-e/widgets-e.component';
|
||||
|
||||
@NgModule({
|
||||
declarations: [
|
||||
WidgetsComponent,
|
||||
WidgetsBrandComponent,
|
||||
WidgetsDropdownComponent,
|
||||
ChartSample,
|
||||
WidgetsEComponent
|
||||
],
|
||||
imports: [
|
||||
CommonModule,
|
||||
WidgetsRoutingModule,
|
||||
GridModule,
|
||||
WidgetModule,
|
||||
IconModule,
|
||||
DropdownModule,
|
||||
SharedModule,
|
||||
ButtonModule,
|
||||
CardModule,
|
||||
DocsComponentsModule,
|
||||
ProgressModule,
|
||||
ChartjsModule
|
||||
],
|
||||
exports: [
|
||||
WidgetsBrandComponent,
|
||||
WidgetsDropdownComponent
|
||||
]
|
||||
})
|
||||
export class WidgetsModule {
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue