()
| 4 | const ConfettiTrigger = () => { |
| 5 | const imagePath = '/img/clap-icon.png'; // 固定的图片路径 |
| 6 | const onClap = () => { |
| 7 | confetti({ |
| 8 | particleCount: 200, |
| 9 | startVelocity: 30, |
| 10 | angle: 90, |
| 11 | spread: 120, |
| 12 | ticks: 300, |
| 13 | gravity: 0.5, |
| 14 | origin: { |
| 15 | x: 0.5, |
| 16 | y: 0.5 |
| 17 | } |
| 18 | }); |
| 19 | }; |
| 20 | |
| 21 | return ( |
| 22 | <div style={{ textAlign: 'center' }}> |
nothing calls this directly
no outgoing calls
no test coverage detected