When working with the app directory in nextJS 13, all client components must have a "use client" directive. But most components from popular react libraries will not have this directive.
The solution I found was to create a file that imports that component and exports it with the "use client" directive, but we need to rename each component to make it accessible via vs code auto import extension.
But is there a better way of using a component library in nextjs without the need to do that?