import styles from './bag.module.css'; import Grid from './grid.jsx'; /** * Inventory bag. 10-40 slots of inventory. */ export default function Bag({ isInventoryOpen, onActivate, slots, }) { return (
); }