Last active
February 28, 2017 07:57
-
-
Save dupski/05df4f808201825705b54eafd039e86e to your computer and use it in GitHub Desktop.
Example of importing the default export of an ES6 Module
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Prod from './models/product'; | |
let widget = new Prod(); | |
widget.name = 'Blue Widget'; | |
widget.price = 2.88; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment