Files
bikinibottom/Divers/gitea-mirror/src/components/auth/SignupPage.tsx
2026-01-19 08:34:20 +01:00

10 lines
201 B
TypeScript

import { SignupForm } from './SignupForm';
import Providers from '@/components/layout/Providers';
export function SignupPage() {
return (
<Providers>
<SignupForm />
</Providers>
);
}