6 lines
169 B
TypeScript
6 lines
169 B
TypeScript
import { AuthPanel } from "@/modules/auth/components/AuthPanel";
|
|
|
|
export default function RegisterPage(): React.ReactElement {
|
|
return <AuthPanel mode="register" />;
|
|
}
|