Files
EMS-ESP32/interface/src/components/inputs/BlockFormControlLabel.tsx
2024-04-20 20:46:01 +02:00

13 lines
310 B
TypeScript

import type { FC } from 'react';
import { FormControlLabel } from '@mui/material';
import type { FormControlLabelProps } from '@mui/material';
const BlockFormControlLabel: FC<FormControlLabelProps> = (props) => (
<div>
<FormControlLabel {...props} />
</div>
);
export default BlockFormControlLabel;