Implementation for React #64
-
What to use the library how can I implement that? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 3 replies
-
Existing wrappers for React well it has a vast ecosystem of third-party libraries and components that you can use in your projects. You can search on www.npmjs.com using keywords related to the library or explore popular React component libraries like Material-UI, Ant Design , or React Bootstrap that provide pre-built React components and wrappers for common UI elements. |
Beta Was this translation helpful? Give feedback.
-
Hi @ajaxecho3 ! The short answer is that this library does not come with explicit support for React. However, making it work in it should not be that complex, since most of the code is vainilla JS. The only place were troubles may arise is the KonvaJS canvas - which is the current default implementation of the rendering system - since it relies on the HTML canvas, which as far as I understand is not available from React's virtual DOM. That said, there are some places were you could start:
Hope that helps! |
Beta Was this translation helpful? Give feedback.
Hi @ajaxecho3 !
The short answer is that this library does not come with explicit support for React. However, making it work in it should not be that complex, since most of the code is vainilla JS. The only place were troubles may arise is the KonvaJS canvas - which is the current default implementation of the rendering system - since it relies on the HTML canvas, which as far as I understand is not available from React's virtual DOM.
That said, there are some places were you could start: