UNPKG

@arco-design/web-react

Version:

Arco Design React UI Library.

11 lines (10 loc) 424 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); 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]; } exports.default = useShowFooter;