@ -18,18 +18,15 @@ The ABP FormInput Component is a reusable form input component for text type.
ABP FormInput component is a part of the `ThemeSharedModule` module. If you've imported that module into your module, you don't need to import it again. If not, first import it as shown below:
ABP FormInput component is a part of the `ThemeSharedModule` module. If you've imported that module into your module, you don't need to import it again. If not, first import it as shown below:
```ts
```ts
// my-feature.module.ts
import { ThemeSharedModule } from "@abp/ng.theme.shared";
import { ThemeSharedModule } from "@abp/ng.theme.shared";
import { FormInputDemoComponent } from "./FomrInputDemoComponent.component";
import { FormInputDemoComponent } from "./FomrInputDemoComponent.component";
@NgModule({
@NgModule({
imports: [
imports: [
ThemeSharedModule,
ThemeSharedModule,
// ...
// ...
],
],
declarations: [FormInputDemoComponent],
declarations: [FormInputDemoComponent],
// ...
})
})
export class MyFeatureModule {}
export class MyFeatureModule {}
```
```
@ -38,12 +35,12 @@ Then, the `abp-form-input` component can be used. See the example below: