UNPKG

wix-style-react

Version:
20 lines (16 loc) 454 B
import React from 'react'; import { classes } from '../TableActionCell.story.st.css'; import { TableActionCell } from 'wix-style-react'; const Example = () => ( <div className={classes.exampleRow}> <TableActionCell dataHook="story-primary-white" primaryAction={{ text: 'Edit', skin: 'inverted', onClick: () => window.alert('Primary action was triggered!'), }} /> </div> ); export default Example;