When a Node.js module import causes the
Module … has no default export
error, change the import statement, update the function name, and enclose the function name with curly braces
# Replace
import jwt_decode from "jwt-decode";
# with
import { jwtDecode } from "jwt-decode";