Skip to content

Commit

Permalink
docs: Update _combination.tsx
Browse files Browse the repository at this point in the history
  • Loading branch information
97vack authored Jan 4, 2024
1 parent 4d815a7 commit f5d53a4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/demos/_combination.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ export default function App() {
<FormItem
bindId="name"
getContent={({ attrs }) => <input {...attrs} className="input" />}
defaultValue={model.name}
initialValue={model.name}
/>
<FormItem
bindId="age"
getContent={({ attrs }) => <input {...attrs} className="input" />}
defaultValue={model.age}
initialValue={model.age}
/>
{render('select')(
<select>
Expand Down

0 comments on commit f5d53a4

Please sign in to comment.