chore: release 6.0.5

This commit is contained in:
David Ralph
2022-04-08 14:43:25 +01:00
parent f58d74146d
commit e0820c6b2a
9 changed files with 20 additions and 23 deletions

View File

@@ -1,4 +1,4 @@
import { createRoot } from 'react-dom/client';
import { render } from 'react-dom';
import App from './App';
import variables from 'modules/variables';
@@ -47,7 +47,7 @@ if (localStorage.getItem('stats') === 'true') {
variables.keybinds = JSON.parse(localStorage.getItem('keybinds') || '{}');
}*/
const container = document.getElementById('root');
const root = createRoot(container);
root.render(<App/>);
render(
<App/>,
document.getElementById('root')
);