| 1 | import { useState, useEffect } from 'react' |
| 2 | |
| 3 | interface IOptions { |
| 4 | /** |
| 5 | * Reset the status after a certain number of milliseconds. This is useful |
| 6 | * for showing a temporary success message. |
| 7 | */ |
| 8 | successDuration?: number |
| 9 | } |
| 10 | |
| 11 | export default function useCopyClipboard( |
| 12 | text: string, |
nothing calls this directly
no outgoing calls
no test coverage detected