rsnext/examples/script-component/pages/index.tsx
Max Proske 5dd4999b64
Convert many examples to TypeScript (#41825)
Strategized with @balazsorban44 to open one larger PR, with changes to individual examples as separate commits. 

For each example, I researched how multiple realworld codebases use the featured technology with TypeScript, to thoughtfully convert them by hand - nothing automated whatsoever.

## Documentation / Examples

- [X] Make sure the linting passes by running `pnpm lint`
- [X] The "examples guidelines" are followed from [our contributing doc](https://github.com/vercel/next.js/blob/canary/contributing/examples/adding-examples.md)
2022-10-26 20:28:55 +00:00

26 lines
585 B
TypeScript

import Link from 'next/link'
export default function Index() {
return (
<main>
<h1>Script component examples</h1>
<ul>
<li>
<Link href="/polyfill">Polyfill</Link>
</li>
<li>
<Link href="/lazy">Lazy Loading</Link>
</li>
<li>
<Link href="/onload">Executing code after loading</Link>
</li>
<li>
<Link href="/inline">Inline scripts</Link>
</li>
<li>
<Link href="/attributes">Forwarding attributes</Link>
</li>
</ul>
</main>
)
}