A Client Component runs in the browser (and is also pre-rendered on the server for the initial HTML). You opt in with the "use client" directive at the top of the file. You need them whenever you require interactivity, state, effects, or browser APIs.
Declaring one
;
{ useState } ;
() {
[count, setCount] = ();
;
}
