16 lines
338 B
TypeScript
16 lines
338 B
TypeScript
'use client';
|
|
|
|
import LotteryAuthForm from '@/components/lottery/auth/LotteryAuthForm';
|
|
|
|
const LotteryAuthPage = () => {
|
|
return (
|
|
<div className="container">
|
|
<div className="flex justify-center items-center min-h-[50vh] py-[200px]">
|
|
<LotteryAuthForm />
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default LotteryAuthPage;
|