app.tsx
Edit this pageThe App
component is the isomorphic (shared on server and browser) entry point into your application.
This is where the code runs on both sides.
This is like the classic entry point where you can define your router, and other top level components.
Basic example (with routing)
This is where routers setup navigation between the pages discovered by the FileRouter
.
See a similar example in StackBlitz
Bare example (no routing)
Since SolidStart does not come packaged with a router, you can simply return your template of choice:
See this example in StackBlitz