UNPKG

cspace-ui

Version:
15 lines (12 loc) 252 B
import React from 'react'; export default function withListType(BaseComponent, listType) { function WithListType(props) { return ( <BaseComponent {...props} listType={listType} /> ); } return WithListType; }