Default Import vs Alias Import
For example, it’s the difference between
import react from "React";
// vs
import * as react from "React";
The first one will only import the default exports but the second one will import all exports.
The correct one to use is the latter one per what Dan said and is also mentioned in the React Docs