(css)
| 47 | export default function FormInputPage() { |
| 48 | |
| 49 | const copyCss = (css) => () => { |
| 50 | navigator.clipboard.writeText(css) |
| 51 | toast.dark('🚀 CSS Copied!'); |
| 52 | } |
| 53 | |
| 54 | return ( |
| 55 | <> |
nothing calls this directly
no outgoing calls
no test coverage detected