Skip to content

Instantly share code, notes, and snippets.

@ThaddeusJiang
Created December 28, 2020 11:44
Show Gist options
  • Save ThaddeusJiang/26201b942649c342c1486b60e771ace3 to your computer and use it in GitHub Desktop.
Save ThaddeusJiang/26201b942649c342c1486b60e771ace3 to your computer and use it in GitHub Desktop.
JavaScript defaultProps 容易出bug
const defaultProps = {
editable: {
name: true,
age: true,
}
}
<Card /> // ok
<Card editable={{ name: false }} /> // NG, because you lose `editable.age`
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment