A React Framework for Deno that makes it easy to create highly interactive apps that have server side rendering with file based routing for both your UI and API.
Besides fixing those issues, this simplifies a lot of how udibo react app works. There are no longer options for render function wrappers, for providers, or a context for managing state. Now to pass state when rendering the application, you just set an initialState. The useInitialState hook can be used to access it when rendering the app. If you want to add providers or contexts to your whole application, you can just add them to the main.tsx file in your routes directory.
Closes https://github.com/udibo/react-app/issues/26, https://github.com/udibo/react-app/issues/27, https://github.com/udibo/react-app/issues/54, https://github.com/udibo/react-app/issues/76,
Besides fixing those issues, this simplifies a lot of how udibo react app works. There are no longer options for render function wrappers, for providers, or a context for managing state. Now to pass state when rendering the application, you just set an initialState. The useInitialState hook can be used to access it when rendering the app. If you want to add providers or contexts to your whole application, you can just add them to the main.tsx file in your routes directory.