()
| 90 | const [likedButtons, setLikedButtons] = useState<Set<string>>(new Set()) |
| 91 | |
| 92 | const handleLoadingDemo = () => { |
| 93 | setIsLoading(true) |
| 94 | setTimeout(() => setIsLoading(false), 2000) |
| 95 | } |
| 96 | |
| 97 | const handleLike = (buttonId: string) => { |
| 98 | setLikedButtons((prev) => { |
nothing calls this directly
no outgoing calls
no test coverage detected