Files
EMS-ESP32/interface/src/components/inputs/BlockFormControlLabel.tsx

11 lines
267 B
TypeScript

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