import styles from './hotbar.module.css'; import Slot from './slot.jsx'; /** * The hotbar. 10 slots of inventory with an active selection. */ export default function Hotbar({active, onActivate, slots}) { const Slots = slots.map((slot, i) => (
onActivate(i)} key={i} >
)); return (
{Slots}
); }