import * as React from 'react'; import { Text } from '@fluentui/react-northstar'; const [notTruncatedText, truncatedText] = [ 'Some long text here to see how it looks when not truncated', 'Some long text here to see how it looks truncated', ].map(text => Array(5) .fill(text) .join('. '), ); const TextExampleTruncatedShorthand = () => (


); export default TextExampleTruncatedShorthand;