mirror of
https://github.com/emsesp/EMS-ESP32.git
synced 2025-12-13 03:09:51 +03:00
11 lines
277 B
TypeScript
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;
|