import React, { useState } from "react"; import Share from "../../app/components/modals/Share"; /** Figma: Modal / Share — node 22073-30884 (Community Rule System). */ export default { title: "Components/Modals/Share", component: Share, parameters: { layout: "fullscreen", docs: { description: { component: "Share modal for published rules (copy link and channel actions).", }, }, }, }; function ShareStoryHost() { const [open, setOpen] = useState(true); return (