Skip to content
This repository was archived by the owner on Feb 5, 2019. It is now read-only.

Commit 420ba27

Browse files
committed
Fixed invalid HTML
1 parent 76cd0ab commit 420ba27

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/server-views/app.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ var App = React.createClass({
1616
<body>
1717
<p>Hello world, this layout is rendered by a <strong>server-side</strong> react view (views/app.jsx)</p>
1818
<p>{'UTC time from server: ' + Date.now()}</p>
19-
<p id='counterContainer'>This text will be replaced by Counter component</p>
19+
<div id='counterContainer'>This text will be replaced by Counter component</div>
2020
</body>
2121
</html>
2222
);

src/server-views/sandbox.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ var Sandbox = React.createClass({
1919
fast, clean environment, without loading the rest of your application.
2020
</p>
2121
<p>{'UTC time from server: ' + Date.now()}</p>
22-
<p id='counterContainer'>This text will be replaced by Counter component</p>
22+
<div id='counterContainer'>This text will be replaced by Counter component</div>
2323
</body>
2424
</html>
2525
);

0 commit comments

Comments
 (0)