Files
EMS-ESP32/interface/src/components/BlockFormControlLabel.tsx
2020-07-05 18:29:08 +02:00

11 lines
277 B
TypeScript

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