const preact = require('preact'); function GamePanel({ game, sendGameAbility, account }) { if (!game) return
...
; return (
{JSON.stringify(game)}
) // return ( //
//
{JSON.stringify(game.a)}
//
{JSON.stringify(game.b)}
//
// {game.log.map((l, i) => (

{l}

))} //
//
// ); } module.exports = GamePanel;