mirror of
https://github.com/emsesp/EMS-ESP32.git
synced 2025-12-06 15:59:52 +03:00
12 lines
309 B
TypeScript
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;
|