UNPKG

@sms-frontend/components

Version:

SMS Design React UI Library.

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]; }