Skip to content

Commit

Permalink
fix: missing return
Browse files Browse the repository at this point in the history
  • Loading branch information
gepd authored and unix committed Jun 5, 2021
1 parent ee66c6a commit 8fa48fa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pages/en-us/components/select.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ Display a dropdown list of items.
desc="Differentiate states by color."
scope={{ Select, Spacer }}
code={`
() => {
() => (
<>
<Select placeholder="default" type="default">
<Select.Option value="1">Option 1</Select.Option>
Expand All @@ -53,7 +53,7 @@ Display a dropdown list of items.
<Select.Option value="2">Option 2</Select.Option>
</Select>
</>
}
)
`}
/>

Expand Down

0 comments on commit 8fa48fa

Please sign in to comment.