2020-05-31 13:47:57 +02:00
|
|
|
import React from 'react';
|
|
|
|
|
import ReactDOM from 'react-dom';
|
|
|
|
|
import App from './App';
|
|
|
|
|
|
2020-12-11 18:23:13 +00:00
|
|
|
// don't allow console logs within production env
|
2021-01-22 21:05:21 +00:00
|
|
|
global.console.log = process.env.NODE_ENV !== 'development' ? (s: string | number | boolean): void => {} : global.console.log;
|
2020-12-11 18:23:13 +00:00
|
|
|
|
2020-05-31 13:47:57 +02:00
|
|
|
ReactDOM.render(
|
2020-06-02 22:52:28 +02:00
|
|
|
<React.StrictMode>
|
|
|
|
|
<App/>
|
|
|
|
|
</React.StrictMode>,
|
|
|
|
|
document.getElementById('root')
|
2020-05-31 13:47:57 +02:00
|
|
|
);
|