javascript class import code example
Example 1: javascript import class
//import it
import Example from './file2';
//Create an Instance
var myInstance = new Example()
myInstance.test()
Example 2: javascript import
import { module } from "./path"; // single module
import Module from "./path"; // default export
import Module, { module } from "./path"; // both