UNPKG

cspace-ui

Version:
16 lines (13 loc) 317 B
import React from 'react'; export default function withListType(BaseComponent, listType) { function WithListType(props) { return ( <BaseComponent // eslint-disable-next-line react/jsx-props-no-spreading {...props} listType={listType} /> ); } return WithListType; }