rsnext/examples/dynamic-routing/pages/about.tsx
Henrik Wenz 827e120740
[docs] Migrate dynamic routing example to typescript (#39806)
Changelog

Migrated example to typescript
Remove obsolete Link->as prop
Normalize Module exports

Documentation / Examples

 Make sure the linting passes by running pnpm lint
 The examples guidelines are followed from our contributing doc

Co-authored-by: JJ Kasper <jj@jjsweb.site>
2022-08-22 08:37:36 -05:00

10 lines
156 B
TypeScript

import Header from '../components/header'
export default function AboutPage() {
return (
<>
<Header />
<h1>About page</h1>
</>
)
}