Reactjs – Equivalent of BrowserOnly within NextJS – i.e. true client-side rendering
In recent versions of nextjs, one can use the use client directive to tell nextjs to render the component "in the client", instead of on the server. Digging deeper into this, its a terrible name, because components that use use…