Missing comma in blog/2017-11-28-react-v16.2.0-fragment-support (#366)

Children in an array must be separated by commas – but a comma was missing in the middle of the example.
This commit is contained in:
Ivan Babak
2017-11-28 16:53:19 -08:00
committed by Dan Abramov
parent 28e6daea94
commit 6dfa6f782a

View File

@@ -57,7 +57,7 @@ render() {
return [
"Some text.",
<h2 key="heading-1">A heading</h2>,
"More text."
"More text.",
<h2 key="heading-2">Another heading</h2>,
"Even more text."
];