Skip to content

Commit

Permalink
Merge pull request #349 from jameskraus/next-docs
Browse files Browse the repository at this point in the history
Fixing the broken V3 example in the docs
  • Loading branch information
calesce authored Sep 3, 2016
2 parents 6f2c583 + 26f4c14 commit 123d940
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,11 +50,12 @@ ReactDOM.render(
// Hot Module Replacement API
if (module.hot) {
module.hot.accept('./containers/App', () => {
render(
const NextApp = require('./containers/App').default;
ReactDOM.render(
<AppContainer>
<App/>
<NextApp/>
</AppContainer>
/>,
,
document.getElementById('root')
);
});
Expand Down

0 comments on commit 123d940

Please sign in to comment.