UNPKG

xbpr

Version:

xbp react ui by @arco-design/web-react

8 lines (7 loc) 329 B
export default function useShowFooter(props) { var title = props.title, description = props.description, actions = props.actions; var showCaption = title || description; var showActions = actions && actions.length; var showFooter = showCaption || showActions; return [showFooter, showCaption, showActions]; }