Table

import Table from 'frui/formats/Table';
Copy

Props

NameTypeRequiredNotes
classNamestringNoStandard HTML class names applied to all cells
stripe[string, string, string]NoBackground color settings for head and rows
styleCSS ObjectNoStandard CSS object applied to all cells
valuestringYesDefault value

Basics

The header values are based on the keys of the first row.

idnameagecreated
1John Doe302021-01-01
2Jane Doe252021-01-02
<Table 
  value={[
    { id: 1, name: 'John Doe', age: 30, created: '2021-01-01' },
    { id: 2, name: 'Jane Doe', age: 25, created: '2021-01-02' }
  ]} 
  stripes={['#999999', '#EFEFEF', '#CCCCCC']} 
/>
Copy