|
|
@@ -24,11 +24,11 @@ export const ProductLabel = ({ data }) => {
|
|
|
newData = data.split('+')
|
|
|
}
|
|
|
return (
|
|
|
- <div>
|
|
|
+ <div className="children:m-2px">
|
|
|
{newData.map((item, index) => (
|
|
|
- <span key={index} className="mr-5px">
|
|
|
- <Tag color="purple">{item}</Tag>
|
|
|
- </span>
|
|
|
+ <Tag color="purple" key={index}>
|
|
|
+ {item}
|
|
|
+ </Tag>
|
|
|
))}
|
|
|
</div>
|
|
|
)
|