(css)
| 57 | export default function ButtonPage() { |
| 58 | |
| 59 | const copyCss = (css) => () => { |
| 60 | navigator.clipboard.writeText(css) |
| 61 | toast.dark('🚀 CSS Copied!'); |
| 62 | } |
| 63 | |
| 64 | return ( |
| 65 | <> |
nothing calls this directly
no outgoing calls
no test coverage detected