12 lines
280 B
TypeScript
12 lines
280 B
TypeScript
import { Flex } from '@mantine/core';
|
|
import { AuthenticationForm } from '@/components/Forms/AuthenticationForm';
|
|
|
|
const LoginPage = () => {
|
|
return (
|
|
<Flex justify="center" align="center" h="100vh">
|
|
<AuthenticationForm />
|
|
</Flex>
|
|
);
|
|
};
|
|
export default LoginPage;
|