Sha256: c66f602a877dd14eb45f2cf4bdc7cf144b8ab6650f06af6ec68e2ae26e37324a
Contents?: true
Size: 1 KB
Versions: 94
Compression:
Stored size: 1 KB
Contents
import React from 'react' import { Table } from '../../' const TableContainer = (props) => { return ( <Table container={false} 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 TableContainer
Version data entries
94 entries across 94 versions & 1 rubygems