Skip to content

Commit

Permalink
Use existing component for select options
Browse files Browse the repository at this point in the history
  • Loading branch information
VincentSmedinga committed Jul 3, 2024
1 parent 933585e commit 8adfb39
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions storybook/src/pages/amsterdam/FormPage/FormPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -81,9 +81,9 @@ export const FormPage = () => {
<Field>
<Label htmlFor="countryCode">Landnummer</Label>
<Select id="countryCode" name="countryCode">
<option value="+31">Nederland +31</option>
<option value="+32">België +32</option>
<option value="+33">Frankrijk +33</option>
<Select.Option value="+31">Nederland +31</Select.Option>
<Select.Option value="+32">België +32</Select.Option>
<Select.Option value="+33">Frankrijk +33</Select.Option>
</Select>
</Field>
<Field>
Expand Down

0 comments on commit 8adfb39

Please sign in to comment.