| 4 | import { AnalysisResult } from '../types'; |
| 5 | |
| 6 | interface ShareButtonProps { |
| 7 | analysisResult: AnalysisResult; |
| 8 | query: string; |
| 9 | onShareClick: () => void; |
| 10 | className?: string; |
| 11 | } |
| 12 | |
| 13 | export const ShareButton: React.FC<ShareButtonProps> = ({ |
| 14 | onShareClick, |
nothing calls this directly
no outgoing calls
no test coverage detected