From 7e4f503d86bee08b88eed77a6c9d06077863a27c Mon Sep 17 00:00:00 2001 From: Ruphaa Ganesh Date: Sat, 21 Mar 2020 22:35:47 +0530 Subject: [PATCH] Remove comma from the portal snippet example (#2852) --- content/docs/portals.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/docs/portals.md b/content/docs/portals.md index 65012139..16e90b2e 100644 --- a/content/docs/portals.md +++ b/content/docs/portals.md @@ -97,7 +97,7 @@ class Modal extends React.Component { render() { return ReactDOM.createPortal( this.props.children, - this.el, + this.el ); } }