From 45cb5ad7164257a7ad007bc99d1d004205249ab7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1s=20Raiti?= <46955459+Secreto31126@users.noreply.github.com> Date: Mon, 7 Mar 2022 04:35:48 -0300 Subject: [PATCH] Updated README example to be coherent with the CommonJS usage (#4418) Co-authored-by: Jay --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d5ba7f9..b9f11bb 100755 --- a/README.md +++ b/README.md @@ -113,7 +113,7 @@ const axios = require('axios').default; Performing a `GET` request ```js -const axios = require('axios'); +const axios = require('axios').default; // Make a request for a user with a given ID axios.get('/user?ID=12345')