megveve felülírása nem megy

This commit is contained in:
2025-11-20 10:44:10 +01:00
commit 1178922afc
18 changed files with 3208 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
import React from 'react'
import ListaElem from './ListaElem'
const BevasarloLista = ({aruk, vetelk}) => {
return (
<div>
{aruk.map((elem,index) => {
//console.log(elem.megveve)
return (
<ListaElem key={index} aru={elem} vetelk={vetelk}/>
)
})
}
</div>
)
}
export default BevasarloLista