used class container as root node

This commit is contained in:
stephen grider 2015-11-25 16:02:55 -08:00
parent 148f18627c
commit 05173d90b6
2 changed files with 2 additions and 2 deletions

View File

@ -4,7 +4,7 @@
<link rel="stylesheet" href="https://cdn.rawgit.com/twbs/bootstrap/v4-dev/dist/css/bootstrap.css">
</head>
<body>
<div id="container"></div>
<div class="container"></div>
</body>
<script src="bundle.js"></script>
</html>

View File

@ -10,4 +10,4 @@ ReactDOM.render(
<Provider store={createStore(reducers)}>
<App />
</Provider>
, document.getElementById('container'));
, document.querySelector('.container'));