Skip to content

v1.0.0-beta.25

Compare
Choose a tag to compare
@wpdas wpdas released this 23 Apr 04:10
· 57 commits to main since this release
  • Added support to rename prop inside a destructuring
    e.g.:
const MyComponent = ({profile: _profile}: any) => {
    console.log(_profile); // It works now as a reference to "profile"
}