Import default exports without curly braces. You can name them whatever you want.
import User from "./User.js";
import MyUser from "./User.js"; // Same thing, different name
const user = new User("Alice");
The name you choose doesn't need to match anything in the exporting module.