| 2 | import { Button } from "./ui/button"; |
| 3 | |
| 4 | interface ApiKeyButtonProps { |
| 5 | onClick: () => void; |
| 6 | } |
| 7 | |
| 8 | export function ApiKeyButton({ onClick }: ApiKeyButtonProps) { |
| 9 | return ( |
nothing calls this directly
no outgoing calls
no test coverage detected