Sha256: e2f92e5efb7802cfa58c7f20c413b8f052795693641ccb77618e9e7fc8d582eb
Contents?: true
Size: 949 Bytes
Versions: 187
Compression:
Stored size: 949 Bytes
Contents
import React from 'react' import { Table } from '../../' const TableLg = () => { return ( <Table size="lg"> <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
187 entries across 187 versions & 1 rubygems