In order to make multiple function calls in a prop in React do the following:

<MyComponent
    onClick={() => {setUserActive(false); setConfirmModal(true);}}
/>