1.5.0 • Published 2 years ago

@s-ui/react-table-basic v1.5.0

Weekly downloads
427
License
MIT
Repository
-
Last release
2 years ago

TableBasic

Table basic to show tabular information.

Table Basic

Installation

$ npm install @s-ui/react-table-basic --save

Usage

Basic usage

import TableBasic from '@s-ui/react-table-basic'

const contentHeadMook = [
  'Versión',
  'Año',
  'Combustible',
  'Potencia',
  'Precio',
  ''
]

const contentBodyMook = [
  [
    {
      content: 'Volkswagen Golf Edition 1.0 TSI 85kW',
      type: 'th',
      isNowrap: true
    },
    {content: '2019'},
    {content: 'Gasolina'},
    {content: '115vc'},
    {content: 'Desde 24.000€'},
    {content: 'Más información'}
  ],
  [
    {
      content: 'Volkswagen Golf Edition 1.0 TSI 85kW',
      type: 'th',
      isNowrap: true
    },
    {content: '2019'},
    {content: 'Gasolina'},
    {content: '115vc'},
    {content: 'Desde 24.000€'},
    {content: 'Más información'}
  ]
]

return <TableBasic head={contentHeadMook} body={contentBodyMook} />

Find full description and more examples in the demo page.

1.5.0

2 years ago

1.4.0

3 years ago

1.3.0

4 years ago

1.2.0

4 years ago

1.1.0

4 years ago