adminFront/src/pages/dashboard/Content/Support/Chat.tsx

16 lines
346 B
TypeScript
Raw Normal View History

2023-03-20 15:27:42 +00:00
import { Box, useTheme } from "@mui/material";
export default function Chat() {
const theme = useTheme()
return (
<Box sx={{
border: "1px solid",
borderColor: theme.palette.grayDark.main,
width: "53%",
height: "100%",
borderRadius: "3px"
}}></Box>
)
}