Files
EMS-ESP32/interface/src/components/inputs/BlockFormControlLabel.tsx
2023-04-22 09:47:29 +02:00

12 lines
309 B
TypeScript

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