Sha256: 5f45543c3357494ec9571623c3d8d7f45a9ecf43539e92169677368a56775fdc
Contents?: true
Size: 1023 Bytes
Versions: 119
Compression:
Stored size: 1023 Bytes
Contents
import React from 'react' import { Table } from '../../' const TableContainerDark = () => { return ( <Table container={false} dark 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 TableContainerDark
Version data entries
119 entries across 119 versions & 1 rubygems