I\'m working on a react project (my first) and I\'ve recently restructured my folder structure to make a bit more sense.
To make my life easier, within my component
One can have multiple named exports per file then import the specific exports by surrounding by braces. The name of the imported module has to be the same as the name of the exported module.
import {Something, Somethingelse} from './utility.js'
One can also import all exports as the following:
import * as bundled from './utility.js'