11 lines
191 B
TypeScript
11 lines
191 B
TypeScript
import { ViewLogin } from "@/module/auth";
|
|
import { Box, Image, rem, Stack, Text } from "@mantine/core";
|
|
|
|
export default function Home() {
|
|
return (
|
|
<>
|
|
<ViewLogin/>
|
|
</>
|
|
);
|
|
}
|