mirror of
https://github.com/Stremio/stremio-web.git
synced 2026-03-11 17:15:48 +00:00
root div id changed to app
This commit is contained in:
parent
dbd77bd106
commit
3f0e399c9a
2 changed files with 2 additions and 2 deletions
|
|
@ -7,7 +7,7 @@
|
|||
</head>
|
||||
|
||||
<body>
|
||||
<div id="root"></div>
|
||||
<div id="app"></div>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
|
|
@ -2,4 +2,4 @@ import React from 'react';
|
|||
import ReactDOM from 'react-dom';
|
||||
import App from './app';
|
||||
|
||||
ReactDOM.render(<App />, document.getElementById('root'));
|
||||
ReactDOM.render(<App />, document.getElementById('app'));
|
||||
|
|
|
|||
Loading…
Reference in a new issue