import { useBackend } from '../backend'; import { Button, LabeledList, Section } from '../components'; import { Window } from '../layouts'; export const InventoryPanelHuman = (props, context) => { const { act, data } = useBackend(context); const { slots, specialSlots, internals, internalsValid, sensors, handcuffed, handcuffedParams, legcuffed, legcuffedParams, accessory, } = data; return (
{slots && slots.length && slots.map((slot) => ( ))} {specialSlots && specialSlots.length && specialSlots.map((slot) => ( ))}
{(internalsValid && ( )) || null} {(sensors && ( )) || null} {(handcuffed && ( )) || null} {(legcuffed && ( )) || null} {(accessory && ( )) || null}
); };