Sha256: 592b6704c719ae087ba6f45e5e96bf979bd3587cbae4d116a261d664c1da731d
Contents?: true
Size: 1.66 KB
Versions: 112
Compression:
Stored size: 1.66 KB
Contents
import React from 'react' import Table from '../_table' import Button from '../../pb_button/_button' const TableOneAction = (props) => { return ( <Table size="sm" {...props} > <thead> <tr> <th>{'Column 1'}</th> <th>{'Column 2'}</th> <th>{'Column 3'}</th> <th>{'Column 4'}</th> <th>{''}</th> </tr> </thead> <tbody> <tr> <td>{'Value 1'}</td> <td>{'Value 2'}</td> <td>{'Value 3'}</td> <td>{'Value 4'}</td> <td> {' '} <Button onClick={() => alert('button clicked!')} text="Action" variant="secondary" {...props} /> {' '} </td> </tr> <tr> <td>{'Value 1'}</td> <td>{'Value 2'}</td> <td>{'Value 3'}</td> <td>{'Value 4'}</td> <td> {' '} <Button onClick={() => alert('button clicked!')} text="Action" variant="secondary" {...props} /> {' '} </td> </tr> <tr> <td>{'Value 1'}</td> <td>{'Value 2'}</td> <td>{'Value 3'}</td> <td>{'Value 4'}</td> <td> {' '} <Button onClick={() => alert('button clicked!')} text="Action" variant="secondary" {...props} /> {' '} </td> </tr> </tbody> </Table> ) } export default TableOneAction
Version data entries
112 entries across 112 versions & 1 rubygems