| 2 | import { Box } from "@mui/material"; |
| 3 | |
| 4 | interface AuthShellProps { |
| 5 | logoAlt: string; |
| 6 | children: ReactNode; |
| 7 | } |
| 8 | |
| 9 | export const AuthShell: React.FC<AuthShellProps> = ({ logoAlt, children }) => ( |
| 10 | <Box sx={{ display: "flex", backgroundColor: "background.default", minHeight: "100vh" }}> |
nothing calls this directly
no outgoing calls
no test coverage detected