mirror of
https://github.com/Shadowfita/docmost.git
synced 2025-11-14 00:31:12 +10:00
8 lines
152 B
TypeScript
8 lines
152 B
TypeScript
'use client';
|
|
|
|
import { SignUpForm } from '@/features/auth/components/sign-up-form';
|
|
|
|
export default function SignUpPage() {
|
|
return <SignUpForm />;
|
|
}
|