Reactjs – onClick and console.log on Nextjs is not working
I'm learning NEXT and there are functions that don't work "use client" import { useState } from 'react' export default function idk() { const [counter,setCounter]=useState(0) const add=()=>{ setCounter(prev=>prev+1) } return( <div onClick={add}> {counter} </div> ) } When the code is…