import React from 'react'
import Table from '../_table'
import Button from '../../pb_button/_button'
const TableOneAction = (props) => {
return (
{'Column 1'} |
{'Column 2'} |
{'Column 3'} |
{'Column 4'} |
{''} |
{'Value 1'} |
{'Value 2'} |
{'Value 3'} |
{'Value 4'} |
|
{'Value 1'} |
{'Value 2'} |
{'Value 3'} |
{'Value 4'} |
alert('button clicked!')}
paddingLeft="none"
text="Tertiary Action"
variant="link"
{...props}
/>
alert('button clicked!')}
text="Secondary Action"
variant="secondary"
{...props}
/>
|
{'Value 1'} |
{'Value 2'} |
{'Value 3'} |
{'Value 4'} |
alert('button clicked!')}
paddingLeft="none"
text="Tertiary Action"
variant="link"
{...props}
/>
alert('button clicked!')}
text="Secondary Action"
variant="secondary"
{...props}
/>
|
)
}
export default TableOneAction