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

19 lines
387 B
TypeScript
Raw Normal View History

2023-03-22 11:43:43 +00:00
import { Box } from "@mui/material";
2023-03-20 15:27:42 +00:00
import Chat from "./Chat";
2023-03-22 09:33:17 +00:00
import TicketList from "./TicketList";
2023-03-20 15:27:42 +00:00
export default function Support() {
return (
<Box sx={{
width: "100%",
display: "flex",
2023-03-21 12:59:46 +00:00
justifyContent: "space-between",
height: "600px",
2023-03-20 15:27:42 +00:00
}}>
<Chat />
2023-03-22 11:43:43 +00:00
<TicketList />
2023-03-20 15:27:42 +00:00
</Box>
);
}