mirror of
https://github.com/emsesp/EMS-ESP32.git
synced 2026-05-06 22:15:52 +00:00
Merge remote-tracking branch 'origin/v3.4' into dev
This commit is contained in:
10
interface/src/components/inputs/BlockFormControlLabel.tsx
Normal file
10
interface/src/components/inputs/BlockFormControlLabel.tsx
Normal file
@@ -0,0 +1,10 @@
|
||||
import { FC } from 'react';
|
||||
import { FormControlLabel, FormControlLabelProps } from '@mui/material';
|
||||
|
||||
const BlockFormControlLabel: FC<FormControlLabelProps> = (props) => (
|
||||
<div>
|
||||
<FormControlLabel {...props} />
|
||||
</div>
|
||||
);
|
||||
|
||||
export default BlockFormControlLabel;
|
||||
Reference in New Issue
Block a user