How to use Ionic Events in React

I’ve attempted to use the pre-configured ionic component events, like ionSelect but they are not triggering. Anyone know how to activate them. https://ionicframework.com/docs/api/radio#events

Here’s my code snippet:

<IonItem key={g.id}>
    <IonLabel>{g.name}</IonLabel>
    <IonRadio slot="start" value={g} checked={g === setGoal} ionSelect ={() => onTabSelect(g)} />
</IonItem>
// using hooks to manage state
const [radioChecked, setRadioChecked] = useState(false);
{/* in the render section */}
<IonRadio
   checked={radioChecked == true}
   onClick={() => {
     setRadioChecked(!radioChecked);
   }}
 />

I think this should be onIonSelect