Barış Can Yılmaz
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
8 additions and
8 deletions
-
docs/en/UI/Angular/Checkbox-Component.md
|
|
|
@ -27,12 +27,12 @@ import { ThemeSharedModule } from "@abp/ng.theme.shared"; |
|
|
|
import { CheckboxDemoComponent } from "./CheckboxDemoComponent.component"; |
|
|
|
|
|
|
|
@NgModule({ |
|
|
|
imports: [ |
|
|
|
ThemeSharedModule, |
|
|
|
// ... |
|
|
|
], |
|
|
|
declarations: [CheckboxDemoComponent], |
|
|
|
// ... |
|
|
|
imports: [ |
|
|
|
ThemeSharedModule, |
|
|
|
// ... |
|
|
|
], |
|
|
|
declarations: [CheckboxDemoComponent], |
|
|
|
// ... |
|
|
|
}) |
|
|
|
export class MyFeatureModule {} |
|
|
|
``` |
|
|
|
@ -41,8 +41,8 @@ Then, the `abp-checkbox` component can be used. See the example below: |
|
|
|
|
|
|
|
```html |
|
|
|
<div class="form-check"> |
|
|
|
<abp-checkbox label="Yes,I Agree" checkboxId="checkbox-input"> |
|
|
|
</abp-checkbox> |
|
|
|
<abp-checkbox label="Yes,I Agree" checkboxId="checkbox-input"> |
|
|
|
</abp-checkbox> |
|
|
|
</div> |
|
|
|
``` |
|
|
|
|
|
|
|
|