const preact = require('preact'); function CrypCard(cryp) { return (
sendItemUse(cryp.id)} >

{cryp.name}

Level {cryp.lvl}

{cryp.hp.value} / {cryp.stam.value} HP
{cryp.xp} / {Math.pow(2, cryp.lvl + 1)} XP
); } module.exports = CrypCard;