I\'m trying to add a snackBar in order to display a message whenever a user signIn or not. SnackBar.jsx:
import React from \"react\"; import PropTypes from \
You must link an event in your onClick. Additionally, the click function must receive the event. See the example
export default function Component(props) { function clickEvent (event, variable){ console.log(variable); } return ( clickEvent(e, 10)} > ) }