wix-style-react
Version:
wix-style-react
25 lines (22 loc) • 537 B
JavaScript
import FullTextView from 'wix-style-react/FullTextView';
export default {
category: '12. Other',
storyName: '12.4 FullTextView',
component: FullTextView,
componentPath: '../src/FullTextView',
componentProps: {
children: 'Very long fancy and hardly fitting tab',
maxWidth: '172px'
},
exampleProps: {
onChange: function onChange(ev) {
return ev.hex();
},
onCancel: function onCancel() {
return 'Cancelled';
},
onConfirm: function onConfirm() {
return 'Confirmed';
}
}
};