13 lines
269 B
TypeScript
13 lines
269 B
TypeScript
import LoginCard from "@/widgets/login/loginCard/Index";
|
|
import React from "react";
|
|
|
|
const page = () => {
|
|
return (
|
|
<div className="fixed z-10 w-screen h-screen flex justify-center items-center -mt-12">
|
|
<LoginCard />
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default page;
|