import * as React from 'react' import { FormControlLabel, Radio, RadioGroup } from '@material-ui/core' interface Props { value: string onChange: (event: React.ChangeEvent<{}>, value: string) => void focusEditor: () => void } export function EditorModeSelect(props: Props) { const labelStyle = { margin: '0 8px 0 8px' } return ( } label="raw" labelPlacement="top" /> } label="xml" labelPlacement="top" /> } label="json" labelPlacement="top" /> ) }