10 lines
148 B
TypeScript
10 lines
148 B
TypeScript
|
import { Outlet } from "react-router-dom";
|
||
|
|
||
|
export function BaseLoginPage(): React.ReactElement {
|
||
|
return (
|
||
|
<>
|
||
|
<Outlet />
|
||
|
</>
|
||
|
);
|
||
|
}
|