hype/examples/ssr/src/pages/index.tsx
2026-01-27 22:34:21 -08:00

15 lines
425 B
TypeScript

export default () => (
<section>
<img class="burger" src="/img/burger.png" width="200px" />
<h1>Hello, world!</h1>
<p>Welcome to <span class="hype">hype</span>!</p>
<p>If you're seeing this, something definitely went right.</p>
<ul>
<li><a href="/about">About This Website</a></li>
<li><a href="/js-test">JS Test</a></li>
<li><a href="/sse">SSE Demo</a></li>
</ul>
</section>
)