import AttrList from './components/AttrList.jsx'; import JsonDisplay from './components/JsonDisplay.jsx'; function ExtendedAttributes({attributes, ...props}) { //console.log(attributes); if (!attributes) return
This object has no attributes.
; const {parent, location, contents, verbs, prepositions} = attributes; const newAttributes = {...attributes, parent: undefined, location: undefined, contents: undefined, verbs: undefined, prepositions: undefined } return <>
{parent ? `The parent of this object is #${parent}.` : "This object has no parent."}
{location ? `This object lives in #${location}` : "This object has no location."}
} export default ExtendedAttributes;