Skip to content

Commit 6ee6fb0

Browse files
authored
docs(react): add a missing closing curly brace on a reactivity example (#1248)
1 parent 135b886 commit 6ee6fb0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/framework/react/guides/reactivity.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ The `form.Subscribe` component is best suited when you need to react to somethin
3434
<form.Subscribe
3535
selector={(state) => state.values.firstName}
3636
children={(firstName) => (
37-
<form.Field>{(field) => <input name="lastName" value={field.state.lastName} onChange={field.handleChange}/></form.Field>
37+
<form.Field>{(field) => <input name="lastName" value={field.state.lastName} onChange={field.handleChange}/>}</form.Field>
3838
)}
3939
/>
4040
```

0 commit comments

Comments
 (0)