()
| 33 | } |
| 34 | |
| 35 | const fetchNcmListFromSefaz = async () => { |
| 36 | const url = |
| 37 | 'https://portalunico.siscomex.gov.br/classif/api/publico/nomenclatura/download/json'; |
| 38 | |
| 39 | const { data: body } = await axios.get(url); |
| 40 | |
| 41 | return body; |
| 42 | }; |
| 43 | |
| 44 | export const getNcmData = async () => { |
| 45 | try { |