mobx#onReactionError TypeScript Examples
The following examples show how to use
mobx#onReactionError.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: App.ts From eth2stats-dashboard with MIT License | 6 votes |
async init(target: HTMLElement) {
let appConfigData: any;
try {
appConfigData = (await axios.get("/config/config.json")).data;
} catch (e) {
// No logging support yet
// tslint:disable-next-line:no-console
console.error(`Couldn't load application config!`, e);
return;
}
let appConfig = new AppConfig();
appConfig.fromJson(appConfigData);
onReactionError((e) => {
// TODO proper logging
// logger.error(e);
});
when(() => true, () => {
ReactDOM.render(
React.createElement(AppComponent, { appConfig }),
target
);
});
}