where to use import export code example
Example 1: javascript import class
//import it
import Example from './file2';
//Create an Instance
var myInstance = new Example()
myInstance.test()
Example 2: import all from javascript
import * as module from "./module.js";