const test = () => { const onClick = () => console.log('hi'); return ( <div onClick={onClick} aria-hidden="true"> Content here </div> )};