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