Browse Source

Merge pull request #702 from g-akshay/patch-1

Remove trailing comma
main
Alex Krolick 7 years ago
committed by GitHub
parent
commit
b4cb5b579a
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      content/docs/portals.md

2
content/docs/portals.md

@ -35,7 +35,7 @@ render() {
// `domNode` is any valid DOM node, regardless of its location in the DOM.
return ReactDOM.createPortal(
this.props.children,
domNode,
domNode
);
}
```

Loading…
Cancel
Save