import { cellWidth, TableText } from '@patternfly/react-table'; import { Table, TableHeader, TableBody, TableProps } from '@patternfly/react-table/deprecated'; // This example has been simplified to focus on the text modifier props. In real usage, // you may want to derive your rows from typed underlying data and minimal state. See other examples. export const LegacyTableTextModifiers: React.FunctionComponent = () => { const columns: TableProps['cells'] = [ { title: 'Truncating text', transforms: [cellWidth(30)] }, { title: 'Wrapping table header text. This th text will wrap instead of truncate.' } ]; const rows: TableProps['rows'] = [ [ { title: This text will truncate instead of wrap. }, { title: ( This is a link that needs to be on one line and fully readable. ) } ] ]; return (
); };