> Atom Table to show tabular information.
npm install @s-ui/react-atom-table> Atom Table to show tabular information.





``sh`
$ npm install @s-ui/react-atom-table --save
#### CSS
`scss`
@import '@s-ui/react-atom-table/lib/index';
#### Javascript
`js
import AtomTable from '@s-ui/react-atom-table'
const contentHead = [
'Versión',
'Año',
'Combustible',
'Potencia',
'Precio',
''
]
const contentBody = [
[
{
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
> Find full description and more examples in the demo page.
``