Fix minor typo in closing H1 tag (#7855)

This commit is contained in:
Marcelo Alves
2016-10-03 19:07:56 -05:00
committed by Brandon Dail
parent 92c84a6f37
commit 23cd77b683
+2 -2
View File
@@ -201,7 +201,7 @@ Or using the new ES6 arrow syntax:
```javascript
const Greeting = (props) => (
<h1>Hello, {props.name}</h1v>
<h1>Hello, {props.name}</h1>
);
ReactDOM.render(
@@ -217,7 +217,7 @@ However, you may still specify `.propTypes` and `.defaultProps` by setting them
```javascript
function Greeting(props) {
return (
<h1>Hello, {props.name}</h1v>
<h1>Hello, {props.name}</h1>
);
}