Axios helper file with interceptors, how to turn it into a context provider?
I have an Axios helper file I have created to add interceptors to my Axios instance. The problem is I am making a hook call in there:
Here is the code in my Axios file:
Rest of the code is pasted below.
const { instance } = useMsal(); and after some research, I have learned you cannot do that outside of a functional component. So now I think from digging more into this, the only way is to make a Axios provider and wrap my app in that? Is that the best way? If so, how do I do that?Here is the code in my Axios file:
Rest of the code is pasted below.
