mirror of
https://github.com/akveo/ngx-admin.git
synced 2025-12-19 08:50:13 +01:00
17 lines
413 B
TypeScript
17 lines
413 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 } from '@nga/theme';
|
||
|
|
|
||
|
|
@NgModule({
|
||
|
|
exports: [
|
||
|
|
CommonModule,
|
||
|
|
FormsModule,
|
||
|
|
ReactiveFormsModule,
|
||
|
|
RouterModule,
|
||
|
|
NgaCardModule,
|
||
|
|
],
|
||
|
|
})
|
||
|
|
export class NgxSharedModule { }
|