Console Logs in Browser’s Developer Tools: Display the console logs in the developer tools of the browser as usual. This approach avoids the issues with stringifying and provides a familiar and fully functional environment for debugging.
Render React Components in the Playground: When there are React components to render, display them directly in the Playground. This allows for immediate visual feedback and testing of UI components without cluttering the interface with logs.
This way, I can effectively debug my code using the developer tools and still see my React components rendered directly in the Playground when needed.