Files
EMS-ESP32/interface/src/components/BlockFormControlLabel.tsx
2021-05-14 12:45:57 +02:00

11 lines
271 B
TypeScript

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