With ES6, I can import several exports from a file like this:
import {ThingA, ThingB, ThingC} from \'lib/things\';
However, I like the orga
if you don't export default in A, B, C but just export {} then it's possible to do so
// things/A.js export function A() {} // things/B.js export function B() {} // things/C.js export function C() {} // foo.js import * as Foo from ./thing Foo.A() Foo.B() Foo.C()