Curly Braces in Javascript import
When should I use curly braces for ES6 import?
1
import { A } from './A'
Only works when A.js has a named export called A. Import without curly braces (import A from './A') is for the default export.
This post is licensed under CC BY 4.0 by the author.