user.name. You can’t just create a Form.Item with name user and a nested Form.Item with name name. You need the leaf Form.Item to know to render with a name of ['user','name'].user would need to re-render a large portion of the form very frequently.Reactively run code in a component:
useEffect(() =>
autorun(() => { ... })
)
Reactively manage state in a component:
const store = useLocalStore(
() => ({
state1: ...,
state2: ...,
method1() { ... },
method2() { ... },
})
)
Babel, swc, and other transpilers that down-transpile async functions will not work with libraries like async where it performs checks like this one: