import React from 'react'; import { FormControl, Checkbox, Text, Container, WarningOutlineIcon, Box, } from 'native-base'; export const Example = () => { const [groupValue, setGroupValue] = React.useState(['Phone', 'Email']); return ( Preferred contact method Selected Values: { setGroupValue(values || []); }} alignItems="flex-start" > Phone Email Message Fax }> You must select at least three methods ); };