14 lines
310 B
TypeScript
14 lines
310 B
TypeScript
|
|
import { NgModule } from '@angular/core';
|
||
|
|
import { CommonModule } from '@angular/common';
|
||
|
|
import { FieldTypesModule } from './components/field-types/field-types.module';
|
||
|
|
|
||
|
|
@NgModule({
|
||
|
|
imports: [
|
||
|
|
CommonModule,
|
||
|
|
FieldTypesModule
|
||
|
|
],
|
||
|
|
exports: [
|
||
|
|
FieldTypesModule
|
||
|
|
]
|
||
|
|
})
|
||
|
|
export class SharedModule { }
|