Sha256: 99b5cab047f19ab734d259bfc61af8a8ee6dad28704ae3906b563b19d7009c75
Contents?: true
Size: 976 Bytes
Versions: 67
Compression:
Stored size: 976 Bytes
Contents
import React from 'react' import { Overlay, Table, } from '../..' const TableExample = () => { return ( <Table size="sm"> <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> {Array.from({ length: 7 }, (_, index) => ( <tr key={index}> {Array.from({ length: 5 }, (_, columnIndex) => ( <td key={columnIndex}>{`Value ${columnIndex + 1}`}</td> ))} </tr> ))} </tbody> </Table> ) } const OverlayDefault = () => ( <> <Overlay> <TableExample /> </Overlay> </> ) export default OverlayDefault
Version data entries
67 entries across 67 versions & 2 rubygems