Closed dy closed 4 years ago
Make useState support async init, to avoid
let [value,setValue] = useState() useEffect(async () => { setValue() }, [])
Deps are updated, not our business anymore.
Make useState support async init, to avoid