I have seen the following two variations for importing code from another module in ES6:
import {module} from "./Module"
and
import module from "./Module"
where module is a ES6 class defined in the file
Module.js
What is the difference between the two import statements?