12 lines
190 B
TypeScript
12 lines
190 B
TypeScript
import type { JSX } from "react"
|
|
|
|
import { RegisterPage } from "@pages/RegisterPage"
|
|
|
|
export default function Register(): JSX.Element {
|
|
return (
|
|
<main>
|
|
<RegisterPage />
|
|
</main>
|
|
)
|
|
}
|