1--- 2let { row, col, state } = Astro.props; 3console.log(state); 4--- 5 6<style> 7 .cell { 8 background: burlywood; 9 box-shadow: inset 0px 0px 1px black; 10 height: 50px; 11 width: 50px; 12 } 13</style> 14 15<div class="cell" data-row={row} data-col={col}></div>