Browse Source
Merge pull request #702 from g-akshay/patch-1
Remove trailing comma
main
Alex Krolick
7 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
content/docs/portals.md
|
@ -35,7 +35,7 @@ render() { |
|
|
// `domNode` is any valid DOM node, regardless of its location in the DOM. |
|
|
// `domNode` is any valid DOM node, regardless of its location in the DOM. |
|
|
return ReactDOM.createPortal( |
|
|
return ReactDOM.createPortal( |
|
|
this.props.children, |
|
|
this.props.children, |
|
|
domNode, |
|
|
domNode |
|
|
); |
|
|
); |
|
|
} |
|
|
} |
|
|
``` |
|
|
``` |
|
|