11 lines
284 B
TypeScript
11 lines
284 B
TypeScript
import MuiCard, { type CardProps } from "@mui/material/Card";
|
|
import CardContent from "@mui/material/CardContent";
|
|
|
|
export default function Card({ children, ...props }: CardProps) {
|
|
return (
|
|
<MuiCard {...props}>
|
|
<CardContent>{children}</CardContent>
|
|
</MuiCard>
|
|
);
|
|
}
|