Sha256: 510ed44d104ecf44c705d5f1340993abe54b51e7ce896335833db492cca7d959
Contents?: true
Size: 986 Bytes
Versions: 94
Compression:
Stored size: 986 Bytes
Contents
import React from 'react' import { Table } from '../../' const TableMd = (props) => { return ( <Table size="md" {...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> <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 TableMd
Version data entries
94 entries across 94 versions & 1 rubygems