Any way for codegen to also do the navigation part for me?

Is there a way for codegen to also do the navigation part for me?
(plain react) ?

If there is, where can I read more about it?

Hi @definitive_tahr! For plain React, routing must be handled by your app code using some routing framework. There’s an example of how to do routing using Plasmic and React Router (both v5 and v6) here: https://docs.plasmic.app/learn/react-quickstart/

So i need to map and maintain routes & route-params to link targets myself ?

(Codegen)

Oh, sorry, I missed that you’re using codegen. Yes, you need to handle routing yourself if you’re using plain React + codegen.

Thank you!