Files
react-test/docs/data/joy/components/box/BoxBasic.tsx

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
221 B
TypeScript
Raw Permalink Normal View History

2025-12-12 14:26:25 +09:00
import Box from '@mui/joy/Box';
export default function BoxBasic() {
return (
<Box component="section" sx={{ p: 2, border: '1px dashed grey' }}>
This Box renders as an HTML section element.
</Box>
);
}