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

Remove trailing comma
This commit is contained in:
Alex Krolick
2018-03-23 01:06:35 -07:00
committed by GitHub

View File

@@ -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
);
}
```