Skip to content

Instantly share code, notes, and snippets.

@arikanmstf
Created June 28, 2018 11:15
Show Gist options
  • Save arikanmstf/8cd6f382bcb1566dc907a7104232b2e3 to your computer and use it in GitHub Desktop.
Save arikanmstf/8cd6f382bcb1566dc907a7104232b2e3 to your computer and use it in GitHub Desktop.
React DOM & Native - Code Sharing - Connecting ui to component
import React from 'react';
const connect = (mapUiToProps) => (
(WrappedComponent) => {
const uiComponents = mapUiToProps();
return (props) => (
<WrappedComponent
{...uiComponents}
{...props}
/>
);
}
);
export default connect;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment