UNPKG

strapi-plugin-parent-child-relationships

Version:

Strapi plugin to create and manage parent-child relationships between content types using custom fields

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