Skip to content

Commit

Permalink
used class container as root node
Browse files Browse the repository at this point in the history
  • Loading branch information
StephenGrider committed Nov 26, 2015
1 parent 148f186 commit 05173d9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -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>
2 changes: 1 addition & 1 deletion src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ ReactDOM.render(
<Provider store={createStore(reducers)}>
<App />
</Provider>
, document.getElementById('container'));
, document.querySelector('.container'));

0 comments on commit 05173d9

Please sign in to comment.