Open terminal and type
$ sudo apt update
Install apache web server
| const handleImageUpload = async (e) => { | |
| // get the file name | |
| const file = e.target.files[0]; | |
| // attach file | |
| const bodyFormData = new FormData(); | |
| bodyFormData.append("image", file); | |
| // set fieldValue state |