mirror of
https://github.com/reactjs/react.dev.git
synced 2026-02-24 04:33:10 +00:00
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:
@@ -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."
|
||||
];
|
||||
|
||||
Reference in New Issue
Block a user