Skip to content

Commit

Permalink
docs(examples): fix in webpack1 example (#1596)
Browse files Browse the repository at this point in the history
  • Loading branch information
layershifter authored and levithomason committed Apr 18, 2017
1 parent c033662 commit c8040bf
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
3 changes: 1 addition & 2 deletions examples/webpack1/.babelrc
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
"stage-1"
],
"plugins": [
"lodash",
["lodash", { "id": "semantic-ui-react" }]
["lodash", { "id": ["lodash", "semantic-ui-react"] }]
]
}
2 changes: 1 addition & 1 deletion examples/webpack1/public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@
</head>
<body>
<div id="root" style="height: 100%"></div>
<script src="./dist/bundle.js"></script>
<script src="./dist/app.js"></script>
</body>
</html>
2 changes: 1 addition & 1 deletion examples/webpack1/src/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@ const App = () => (
</Container>
)

render(App, MOUNT_NODE)
render(<App />, MOUNT_NODE)

0 comments on commit c8040bf

Please sign in to comment.