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