import React from "react"; import marked from "marked"; const fontSize = window.innerWidth > 1000 ? 14 : 18; const Popup = ({ content = [], styles = {}, isOpen = true, onClose, title, theme = "light", children, }) => (

{title}

{content.map((t, idx) => (
))} {children}
); export default Popup;