feat: Login Page

This commit is contained in:
boboiazumi
2025-03-28 11:46:27 +07:00
parent daeeb09798
commit a3887519f9
10 changed files with 90 additions and 1 deletions
@@ -0,0 +1,12 @@
import { FC, ReactElement } from 'react';
import { Outlet } from 'react-router-dom';
export const AppLayout: FC = (): ReactElement => {
return (
<main className="bg-primary-50 min-h-screen">
<Outlet />
</main>
);
};
export default AppLayout;