Skip to content
This repository has been archived by the owner on Mar 1, 2024. It is now read-only.

Commit

Permalink
Merge pull request #494 from klip/patch-3
Browse files Browse the repository at this point in the history
Update FormElementsPage.react.js
  • Loading branch information
jonthomp authored Feb 22, 2021
2 parents 8edf961 + 3c5d7e1 commit 9a12ace
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion example/src/FormElementsPage.react.js
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ function FormElements() {
extended ZIP+4 code to determine address more
accurately.
</p>
<p class="mb-0">
<p className="mb-0">
<a href="#">USP ZIP codes lookup tools</a>
</p>
</React.Fragment>
Expand Down Expand Up @@ -268,6 +268,17 @@ function FormElements() {
<Form.Ratio step={5} min={0} max={50} defaultValue={15} />
</Form.Group>
</ComponentDemo>
<ComponentDemo>
<Form.Group label="Number">
<Form.Input
type="number"
step=".01"
min={0}
max={50}
defaultValue={15}
/>
</Form.Group>
</ComponentDemo>
<ComponentDemo>
<Form.Group label="Size">
<Form.SelectGroup>
Expand Down

0 comments on commit 9a12ace

Please sign in to comment.