import { StyledLabel, StyledRadio } from './styled-radio'; import * as React from 'react'; interface Props { label: string; name: string; checked: boolean; onChange: () => void; } const Radio = (props: Props) => (
{props.label}
) export default Radio;