(num: number)
| 24 | }, []); |
| 25 | |
| 26 | const formatNumber = (num: number): string => { |
| 27 | if (num >= 1000) { |
| 28 | return `${(num / 1000).toFixed(1)}k`; |
| 29 | } |
| 30 | return num.toString(); |
| 31 | }; |
| 32 | |
| 33 | return ( |
| 34 | <section className="w-full max-w-4xl space-y-6"> |
no outgoing calls
no test coverage detected