root div id changed to app

This commit is contained in:
NikolaBorislavovHristov 2018-06-07 09:35:14 +03:00
parent dbd77bd106
commit 3f0e399c9a
2 changed files with 2 additions and 2 deletions

View file

@ -7,7 +7,7 @@
</head>
<body>
<div id="root"></div>
<div id="app"></div>
</body>
</html>

View file

@ -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'));