Skip to content

Commit

Permalink
chore(demo): update Setup section of InputPhoneInternational docu…
Browse files Browse the repository at this point in the history
…mentation (#9975)
  • Loading branch information
nsbarsukov authored Dec 12, 2024
1 parent 1526849 commit b144aec
Showing 1 changed file with 2 additions and 6 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
```ts
import {ReactiveFormsModule} from '@angular/forms';
import type {TuiCountryIsoCode} from '@taiga-ui/i18n';
import {TuiInputPhoneInternational} from '@taiga-ui/kit';

@Component({
Expand All @@ -12,11 +13,6 @@ export class Example {
testValue: new FormControl('+78005553535'),
});

readonly countries: ReadonlyArray<TuiCountryIsoCode> = [
TuiCountryIsoCode.RU,
TuiCountryIsoCode.KZ,
TuiCountryIsoCode.UA,
TuiCountryIsoCode.BY,
];
readonly countries: ReadonlyArray<TuiCountryIsoCode> = ['RU', 'KZ', 'UA', 'BY'];
}
```

0 comments on commit b144aec

Please sign in to comment.