import { useState } from 'react'; import { ExpandableSection, ExpandableSectionToggle, Stack, StackItem } from '@patternfly/react-core'; export const ExpandableSectionDetached: React.FunctionComponent = () => { const [isExpanded, setIsExpanded] = useState(false); const onToggle = (isExpanded: boolean) => { setIsExpanded(isExpanded); }; const contentId = 'detached-expandable-section-content'; const toggleId = 'detached-expandable-section-toggle'; return ( This content is visible only when the component is expanded. {isExpanded ? 'Show less detached example content' : 'Show more detached example content'} ); };