(e: any)
| 48 | }; |
| 49 | |
| 50 | const normFile = (e: any) => { |
| 51 | console.log('Upload event:', e); |
| 52 | if (Array.isArray(e)) { |
| 53 | return e; |
| 54 | } |
| 55 | return e?.fileList; |
| 56 | }; |
| 57 | |
| 58 | |
| 59 | return ( |
nothing calls this directly
no outgoing calls
no test coverage detected