12 lines
276 B
TypeScript
12 lines
276 B
TypeScript
import { RegisterForm } from "@/components/register-form"
|
||
|
||
export default function RegisterPage() {
|
||
return (
|
||
<div className="container mx-auto px-4 py-8">
|
||
<h1 className="text-2xl font-bold mb-6">Регистрация</h1>
|
||
<RegisterForm />
|
||
</div>
|
||
)
|
||
}
|
||
|