import { Modal } from "antd" import { useState } from "react" export const PlaygroundSettings = () => { const [open, setOpen] = useState(false) return (
setOpen(false)}> Nothing to see here
) }