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
Due to a hard dependency to React 0.13, this library does not work with React 0.14 because the rendering API of react has changed.
The text was updated successfully, but these errors were encountered:
thanks for reporting will push a new version soon
Sorry, something went wrong.
Simply replace
html = React.renderToString // ...
with
import { renderToString } from 'react-dom/server'; // ... renderToString(<Layout store={store}/>);
here and here
Successfully merging a pull request may close this issue.
Due to a hard dependency to React 0.13, this library does not work with React 0.14 because the rendering API of react has changed.
The text was updated successfully, but these errors were encountered: