'use client' directive
RU: 'use client' директива
A React directive placed at the top of a module file to declare that the file and everything it imports form a client component subtree. The framework excludes server-only code above this boundary from the client bundle and replaces references to Server Components passed as children with their pre-rendered RSC Payload. Without this directive, a component is a Server Component by default in RSC-enabled frameworks.