From cf5add4f03754d9df80c02d4a61f0daa4af0088b Mon Sep 17 00:00:00 2001 From: Nikhil Verma Date: Mon, 26 Feb 2018 17:46:38 +0530 Subject: [PATCH] Allow passing props to the HOC Fixes https://github.com/FormidableLabs/react-live/issues/48 --- src/hoc/withLive.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hoc/withLive.js b/src/hoc/withLive.js index 494ca4db..9260f28a 100644 --- a/src/hoc/withLive.js +++ b/src/hoc/withLive.js @@ -7,7 +7,7 @@ const withLive = WrappedComponent => { render() { const { live } = this.context - return + return } }