Sha256: a4d4c3d5155e363034cab5f7a9412ec8922684ab71ea6f46a43bc0905fb30c5e
Contents?: true
Size: 1002 Bytes
Versions: 187
Compression:
Stored size: 1002 Bytes
Contents
import React from 'react' import { Table } from '../../' const TableContainer = () => { return ( <Table container={false} size="md" > <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> <td>{'Value 1'}</td> <td>{'Value 2'}</td> <td>{'Value 3'}</td> <td>{'Value 4'}</td> <td>{'Value 5'}</td> </tr> <tr> <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 TableContainer
Version data entries
187 entries across 187 versions & 1 rubygems