Issue
It should be possible to pass static properties from the app to modules, that cannot be configured through the query string such as the params.
This should be done with an optional parameter on the constructor:
let app = new App(moduleConfig, { props: { foo: "bar" }});
console.log(app.props); // { foo: "bar" }}
Issue
It should be possible to pass static properties from the app to modules, that cannot be configured through the query string such as the params.
This should be done with an optional parameter on the constructor: