Ir a la última revisión |
|
Ultima modificación |
Ver Log
|
| Rev |
Autor |
Línea Nro. |
Línea |
| 5473 |
stevensc |
1 |
/* eslint-disable react/prop-types */
|
|
|
2 |
import React from 'react'
|
|
|
3 |
import Button from '../../../../../../shared/button/Button'
|
|
|
4 |
|
|
|
5 |
const ItemsList = ({ value }) => {
|
|
|
6 |
return (
|
|
|
7 |
<div className='d-flex align-items-center flex-wrap' style={{ gap: '.5rem' }}>
|
|
|
8 |
{value.map(({ value, name }) => {
|
|
|
9 |
return <Button label={name} key={value} variant='secondary cursor-auto' />
|
|
|
10 |
})}
|
|
|
11 |
</div>
|
|
|
12 |
)
|
|
|
13 |
}
|
|
|
14 |
|
|
|
15 |
export default ItemsList
|