wix-style-react
Version:
wix-style-react
26 lines (23 loc) • 564 B
JavaScript
import React from 'react';
import TextLink from '../../../src/TPA/TextLink';
var style = {
display: 'inline-block',
padding: '0 5px',
width: '140px',
lineHeight: '22px'
};
function Example() {
return React.createElement(
'div',
{ style: style },
React.createElement(
TextLink,
{
link: 'https://wix-wix-style-react.surge.sh/?selectedKind=Introduction&selectedStory=Getting%20started&full=0&down=0&left=1&panelRight=0',
'data-hook': 'story-text-link'
},
'Click me'
)
);
}
export default Example;