Sha256: f93e9e3cee3dc1d933f1b3a46703e9aea40543e58de7fc1208c5b6047e080656
Contents?: true
Size: 986 Bytes
Versions: 1919
Compression:
Stored size: 986 Bytes
Contents
import React from 'react' import Table from '../_table' const TableLg = (props) => { return ( <Table size="lg" {...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 TableLg
Version data entries
1,919 entries across 1,919 versions & 2 rubygems