|
@@ -21,9 +21,7 @@ export const ProductLabel = ({ data }) => {
|
|
|
return (
|
|
return (
|
|
|
<div className="!children:m-2px">
|
|
<div className="!children:m-2px">
|
|
|
{newData.map((item, idx) => (
|
|
{newData.map((item, idx) => (
|
|
|
- <Tag color="purple" key={item + idx}>
|
|
|
|
|
- {item}
|
|
|
|
|
- </Tag>
|
|
|
|
|
|
|
+ <Tag key={item + idx}>{item}</Tag>
|
|
|
))}
|
|
))}
|
|
|
</div>
|
|
</div>
|
|
|
)
|
|
)
|