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