import React from 'react'; import Checkbox from '@material-ui/core/Checkbox'; import FormGroup from '@material-ui/core/FormGroup'; import FormControlLabel from '@material-ui/core/FormControlLabel'; import FormControl from '@material-ui/core/FormControl'; import FormLabel from '@material-ui/core/FormLabel'; export default function FormControlLabelPosition() { return ( Label Placement } label="Top" labelPlacement="top" /> } label="Start" labelPlacement="start" /> } label="Bottom" labelPlacement="bottom" /> } label="End" labelPlacement="end" /> ); }