Ready to build base login page

This commit is contained in:
2023-06-06 16:50:47 +02:00
parent 704a25d2e8
commit b63df5b953
3 changed files with 13 additions and 1 deletions

View File

@ -0,0 +1,9 @@
import { Outlet } from "react-router-dom";
export function BaseLoginPage(): React.ReactElement {
return (
<>
<Outlet />
</>
);
}