skip to Main Content

'event' is deprecated in reactjs script

I have this block of code in reactjs using Vite, following a YouTube tutorial. import { MouseEvent } from 'react'; function ListGroup(){ let items = ['New York','San Francisco','Los Angeles','Boston'] const handleClick = (event.click)=>console.log(event) return ( <> <h1>List Group</h1> {items.length===0 &&…

VIEW QUESTION
Back To Top
Search