import React from 'react'; import { ClipboardCopy, ClipboardCopyVariant } from '@breakaway/preact-core'; const text = [ 'Got a lot of text here,', 'need to see all of it?', 'Click that arrow on the left side and check out the resulting expansion.' ]; export const ClipboardCopyExpandedWithArray: React.FunctionComponent = () => ( {text.join(' ')} );