File size: 373 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
export default function Index() {
return (
<p id="zero-state">
This is a demo for integrating React Router with React Query.
<br />
Check out{' '}
<a href="https://reactrouter.com/">
the docs at reactrouter.com
</a> and{' '}
<a href="https://tanstack.com/query/v5/docs/">the docs at tanstack.com</a>
.
</p>
)
}
|