Skip to content

Page Views

Page views (defined by +page.jsx) are components that are unique to just that route and in many ways define a route. For example, to define a view at the root of your application you just need to define a component at src/routes/+page.jsx:

src/routes/+page.tsx
export default () => {
return <div> Hello Houdini! </div>
}
src/routes/+page.jsx
export default () => {
return <div> Hello Houdini! </div>
}