13 lines
330 B
TypeScript
13 lines
330 B
TypeScript
|
|
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;
|