import React from 'react'; import { ExpandableSection, ExpandableSectionToggle, Stack, StackItem } from '@breakaway/preact-core'; export const ExpandableSectionDetached: React.FunctionComponent = () => { const [isExpanded, setIsExpanded] = React.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' : 'Show more'} ); };