All Questions
1 question
0
votes
2
answers
4k
views
How to upload image with react native?
I upload image with react js like this :
const onSubmit = (e) => {
console.log(e.img);
form.append("file", e.img.originFileObj);
Axios.post("url", form, {
...