Files
EMS-ESP32/interface/src/components/inputs/BlockFormControlLabel.tsx
2025-10-28 22:19:43 +01:00

14 lines
346 B
TypeScript

import { memo } from 'react';
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 memo(BlockFormControlLabel);