feat(mui): first ui-kit wrappers (Button, Card, TextField) + barrel

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
BOHA
2026-06-06 19:13:14 +02:00
parent bb7e53f47a
commit 090cfd7400
4 changed files with 26 additions and 0 deletions

10
src/admin/ui/Card.tsx Normal file
View File

@@ -0,0 +1,10 @@
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>
);
}