bookmark

javascript - Is it possible to import modules from all files in a directory, using a wildcard? - Stack Overflow


Description

In things/index.js,

export {default as ThingA} from './ThingA' export {default as ThingB} from './ThingB' export {default as ThingC} from './ThingC'

Then to consume all the things elsewhere,

import * as things from './things'

Preview

Tags

Users

  • @jil

Comments and Reviews