Skip to content

Instantly share code, notes, and snippets.

@dupski
Last active February 28, 2017 07:57
Show Gist options
  • Save dupski/05df4f808201825705b54eafd039e86e to your computer and use it in GitHub Desktop.
Save dupski/05df4f808201825705b54eafd039e86e to your computer and use it in GitHub Desktop.
Example of importing the default export of an ES6 Module
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