Use strict mode to catch some potential problems

[MAILPOET-2452]
This commit is contained in:
Pavel Dohnal
2019-12-09 13:28:51 +01:00
committed by Rostislav Wolný
parent e1f1ea0ce0
commit be1e70bfb4

View File

@@ -17,7 +17,9 @@ if (appElement) {
initStore();
initBlocks();
ReactDOM.render(
<App />,
<React.StrictMode>
<App />
</React.StrictMode>,
appElement
);
}