Say I have class Panels and class Panel in my ui.
I want to avoid multiple statements such as import Panel.. and import Panels ... every time I decide to use them.
Instead, I want to re-export Panel from Panels once, and in my app just say something like import * from 'Panels.js' causing both Panel and Panels appear in the scope of my App.
Is this possible? Good tutorial on the subject? thanks.
javascripttag to the question, it's relevant