mirror of https://github.com/abpframework/abp.git
6 changed files with 18 additions and 1 deletions
@ -0,0 +1,3 @@ |
|||||
|
# @abp/ng.components/dynamic-form |
||||
|
|
||||
|
Secondary entry point of `@abp/ng.components`. It can be used by importing from `@abp/ng.components/dynamic-form`. |
||||
@ -0,0 +1,5 @@ |
|||||
|
{ |
||||
|
"lib": { |
||||
|
"entryFile": "src/index.ts" |
||||
|
} |
||||
|
} |
||||
@ -0,0 +1 @@ |
|||||
|
export * from './lib/dynamic-form.module'; |
||||
@ -0,0 +1,7 @@ |
|||||
|
import { NgModule } from '@angular/core'; |
||||
|
import { CommonModule } from '@angular/common'; |
||||
|
|
||||
|
@NgModule({ |
||||
|
imports: [CommonModule], |
||||
|
}) |
||||
|
export class DynamicFormModule {} |
||||
Loading…
Reference in new issue