django-react-templatetags
django-react-templatetags copied to clipboard
A quick way to add React components to your Django templates.
React 18 replaces `render` with `createRoot` and `root.render`. ([how to upgrade](https://reactjs.org/blog/2022/03/08/react-18-upgrade-guide.html)) Is there a plan to update [django-react-templatetags](https://github.com/Frojd/django-react-templatetags) to support React 18?
`assertTrue` is not for comparing arguments, should use `assertEqual` for that. The developer's intent of the test was to compare argument 1 with argument 2, which is not happening. Really...
Not really an issue, just wanted to start a thread for projects and companies using this library. I found it super helpful for my own projects. And just want to...
This problem might be with hypernova-python plugin. The error gets stuck inside "results" and not at the base dictionary. Eventhough I get the response that everything is OK, the SSR...
This is a proposal to add support for React 18. For React 18, `ReactDOM.render` and `ReactDOM.hydrate` are deprecated, so the new `ReactDOM.createRoot` and `ReactDOM.hydrateRoot` methods must be used: https://react.dev/reference/react-dom/client/createRoot#createroot https://react.dev/reference/react-dom/client/hydrateRoot#hydrateroot...