UNPKG

strapi-plugin-content-manager

Version:

A powerful UI to easily manage your data.

12 lines (8 loc) 229 B
import React from 'react'; function connect(WrappedComponent, select) { return function(props) { const selectors = select(props); return <WrappedComponent {...props} {...selectors} />; }; } export default connect;