ERROR TypeError: Restricted in strict mode, js engine: hermes
is getting thrown when trying to import Axios
for network request in react native application. The error gets removed when i'm trying to remove the import statement from the below code.
api.js
import axios from "axios";
export default axios.create({
baseURL:"https://.com/v3/test",
headers:{
Authorization:'Bearer fsdfsfsd'
}
});