rsnext/examples/with-mux-video/pages/index.tsx
Max Proske ce0bcd38f2
Convert with-gsap, with-mqtt-js, with-mux-video examples to Typescript (#43874)
Converted three more examples to TypeScript.

Changes to individual examples pushed as separate commits.

## Documentation / Examples

- [X] Make sure the linting passes by running `pnpm build && 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-12-12 01:53:08 +00:00

10 lines
209 B
TypeScript

import UploadForm from '../components/upload-form'
import UploadPage from '../components/upload-page'
export default function Home() {
return (
<UploadPage>
<UploadForm />
</UploadPage>
)
}