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
React Conf 2019 于 2019.10.23 号开始,信息量很大:视频链接
本周精读介绍第二天的内容并结合笔者自身思考,拭目以待~
精读《React Conf 2019 - Day2》
The text was updated successfully, but these errors were encountered:
函数式编程里的例子应该是这个意思
const Store = ({ state, render }) => ({ state, render, extend: (f) => Store({ state, render: (state) => f(Store({ state, render })) }), extract: () => render(state), }); const App = Store({ state: { msg: "World" }, render: ({ msg }) => <p>Hello {msg}</p>, }); App.extend(({ state, render }) => render(state.msg === "World" ? { msg: "ReactConf" } : state) ).extract();
Sorry, something went wrong.
No branches or pull requests
React Conf 2019 于 2019.10.23 号开始,信息量很大:视频链接
本周精读介绍第二天的内容并结合笔者自身思考,拭目以待~
精读《React Conf 2019 - Day2》
The text was updated successfully, but these errors were encountered: