import React from 'react'; import { Container, FormControl, Radio, WarningOutlineIcon } from 'native-base'; export const Example = () => { const [groupValue, setGroupValue] = React.useState('1'); return ( Select Prize { setGroupValue(value || ''); }} > First Second Third }> You must select a Prize. ); };