wix-style-react
Version:
wix-style-react
14 lines (13 loc) • 327 B
JavaScript
import React from 'react';
import Heading from 'wix-style-react/Heading';
export default (function () {
return React.createElement(
'div',
{ 'data-hook': 'heading-with-ellipses', style: { width: '267px' } },
React.createElement(
Heading,
{ ellipsis: true },
'very very long text'
)
);
});