Closed
Description
Hey, I was looking a the code and I noticed that here: https://github.com/jchiatt/react-chaos/blob/master/src/index.tsx#L17
The props are not passed down to the WrappedComponent
. It should probably be
return (props) => <WrappedComponent {...props} />;
or just:
return WrappedComponent