skip to Main Content

Reactjs – Next.js Error: async/await Not Supported in React Client Component Despite No Usage – 'use client' Causing Issue"

For simplicity, I have this useState function 'use client' import {useState} from 'react'; const Home = () => { const [juice, setJuice] = useState('apple'); return ( <div className='w-full flex flex-col lg:flex-row h-40 bg-black' onClick={() => setJuice('orange')}> <p className='text-white text-2xl font-bold…

VIEW QUESTION
Back To Top
Search