16 lines
346 B
TypeScript
16 lines
346 B
TypeScript
![]() |
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>
|
||
|
)
|
||
|
}
|