mirror of
https://github.com/akveo/ngx-admin.git
synced 2026-02-04 07:31:48 +01:00
19 lines
522 B
TypeScript
19 lines
522 B
TypeScript
import { NgModule } from '@angular/core';
|
|
import { CommonModule } from '@angular/common';
|
|
import { FormsModule, ReactiveFormsModule } from '@angular/forms';
|
|
import { RouterModule } from '@angular/router';
|
|
import { NgaCardModule, NgaThemeModule } from '@akveo/nga-theme';
|
|
import { ThemeModule } from './@theme/theme.module';
|
|
|
|
@NgModule({
|
|
exports: [
|
|
CommonModule,
|
|
FormsModule,
|
|
ReactiveFormsModule,
|
|
RouterModule,
|
|
NgaCardModule,
|
|
NgaThemeModule,
|
|
ThemeModule,
|
|
],
|
|
})
|
|
export class SharedModule { }
|