I am using React in VS code, and I am trying to import the following modules:
import React from 'react';
import axios from 'axios';
I am able to successfully import React, but when I import axios, I get a Module not found error.
./src/components/UploadForm.js Module not found: Can't resolve 'axios' in '/Users/jsmith/upload-file/upload-file/src/components'
My program fails to compile, and I am not sure how to fix this. This happens for a few other modules as well.