Merge branch 'add-network' of https://github.com/magnum-opus-tender-hack/frontend into add-network

This commit is contained in:
ilia 2022-10-22 19:44:49 +03:00
commit 6e9cdca56f

View File

@ -8,9 +8,19 @@ export const ProductsView:React.FC = () =>{
console.log(getProducts) console.log(getProducts)
return( return(
<div> <div>
<Card title="Card title" bordered={false}> {
Card content getProducts.map(el=> <Card title={el.name} bordered={true}>
</Card> <div>
{el.category}
</div>
<div>
{
el.characteristics == undefined? "":el.characteristics.toString()
}
</div>
</Card>)
}
</div> </div>
); );
} }