Hello there! We currently have an earlier version of Nextjs integrating with Storybook really well, allowing us to import our reusable components as promised.
We were hoping we'd be able to achieve the same integration with Next13 by just using client side components but this does not seem to be working. The only solutions we found were to wrap each imported storybook component in separate wrappers with "use client" at the top of the file. But this is not practical with the amount of component's we have..
Any suggestions (if its currently possible) to have all our component's client components by default without doing it the way mentioned above? 😊