mirror of
https://github.com/jaypyles/Scraperr.git
synced 2025-12-15 20:26:02 +00:00
* chore: wip agent mode * wip: add agent mode frontend * wip: add agent mode frontend * chore: cleanup code * chore: cleanup code * chore: cleanup code
30 lines
586 B
TypeScript
30 lines
586 B
TypeScript
import { Box } from "@mui/material";
|
|
|
|
export type DisabledProps = {
|
|
message: string;
|
|
};
|
|
|
|
export const Disabled = ({ message }: DisabledProps) => {
|
|
return (
|
|
<Box
|
|
bgcolor="background.default"
|
|
minHeight="100vh"
|
|
display="flex"
|
|
justifyContent="center"
|
|
alignItems="center"
|
|
>
|
|
<h4
|
|
style={{
|
|
color: "#fff",
|
|
padding: "20px",
|
|
borderRadius: "8px",
|
|
background: "rgba(0, 0, 0, 0.6)",
|
|
boxShadow: "0 4px 8px rgba(0, 0, 0, 0.2)",
|
|
}}
|
|
>
|
|
{message}
|
|
</h4>
|
|
</Box>
|
|
);
|
|
};
|