Sha256: 660ad4b8b5f875c6aa9bc4ce8e95e880723df2c9ced76c7badbc7b89d5ed9888
Contents?: true
Size: 1017 Bytes
Versions: 94
Compression:
Stored size: 1017 Bytes
Contents
import React from 'react' import { Table } from '../../' const TableAlignmentRow = (props) => { return ( <Table {...props} > <thead> <tr> <th>{'Column 1'}</th> <th>{'Column 2'}</th> <th>{'Column 3'}</th> <th>{'Column 4'}</th> <th>{'Column 5'}</th> </tr> </thead> <tbody> <tr> <td>{'Value 1'}</td> <td>{'Value 2'}</td> <td>{'Value 3'}</td> <td>{'Value 4'}</td> <td>{'Value 5'}</td> </tr> <tr align="center"> <td>{'Value 1'}</td> <td>{'Value 2'}</td> <td>{'Value 3'}</td> <td>{'Value 4'}</td> <td>{'Value 5'}</td> </tr> <tr align="right"> <td>{'Value 1'}</td> <td>{'Value 2'}</td> <td>{'Value 3'}</td> <td>{'Value 4'}</td> <td>{'Value 5'}</td> </tr> </tbody> </Table> ) } export default TableAlignmentRow
Version data entries
94 entries across 94 versions & 1 rubygems