I am new to react and dash. I have developed a dash application where there are dynamic operations and graphs been plotted. Now, the organization requirement is I need to use react in order to maintain consistency with other applications. Is there any way I can utilize my dash application and convert it or leverage it as a react app without having to rewrite the whole application in react again?
Asked
Active
Viewed 1,136 times
0
-
You can create custom dash components using React. See my answer [here](https://stackoverflow.com/a/66141429/9098350) – 5eb Aug 31 '21 at 06:54
-
Thank you @BasvanderLinden. So, it would be a react app with embedded dash, is it? (with a node backend)? – Aug 31 '21 at 06:59
-
Yes that’s possible. As far as structure goes I would keep things separate. So you have one folder that generates custom dash components from React code, your actual frontend application that uses the custom components and finally your node backend. – 5eb Aug 31 '21 at 07:04
-
@Jayashri were you able to use your developed dash app and connect it to React? Or did you have to migrate code? – Elaine Oct 03 '21 at 04:47