We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
http://facebook.github.io/react/blog/2014/10/16/react-v0.12-rc1.html
눈에 뜨는 변화들을 써보자면요,
...
var myProps = { a: 1, b: 2 }; return <MyComponent {...myProps} />;
@jsx
props.key
props.ref
someElement.props.key -> someElement.key
React.renderComponent -> React.render
The text was updated successfully, but these errors were encountered:
👍
Sorry, something went wrong.
transferPropsTo가 없어지는게 좀 아쉽네요... 고칠 데가 많군요 ㅠㅠ
transferPropsTo
No branches or pull requests
http://facebook.github.io/react/blog/2014/10/16/react-v0.12-rc1.html
눈에 뜨는 변화들을 써보자면요,
...
으로 dynamic하게 값 넘기는 것이 가능해짐.@jsx
pragma 안 써도 된다props.key
와props.ref
가 자바스크립트 VM에서 JIT성능이 떨어지는 문제로 ReactElement 쪽으로 이동 (본문에서 썼듯someElement.props.key -> someElement.key
)React.renderComponent -> React.render
The text was updated successfully, but these errors were encountered: