import React from 'react'; import dynamic from 'next/dynamic'; import { Widget } from '../ChatWindow'; import Weather from './Weather'; import Calculation from './Calculation'; import CardGallery from './CardGallery'; import KnowledgeCard from './KnowledgeCard'; import InlineImageGallery from './InlineImageGallery'; import VideoEmbed from './VideoEmbed'; import ProductCard from './ProductCard'; import VideoCard from './VideoCard'; import ProfileCard from './ProfileCard'; import PromoCard from './PromoCard'; const Stock = dynamic(() => import('./Stock'), { ssr: false }); const Renderer = ({ widgets }: { widgets: Widget[] }) => { return (