import React from 'react' import { useTranslation } from 'react-i18next' import { useComponent } from '@xrengine/engine/src/ecs/functions/ComponentFunctions' import { PersistentAnchorComponent } from '@xrengine/engine/src/xr/XRAnchorComponents' import InputGroup from '../inputs/InputGroup' import StringInput from '../inputs/StringInput' import NodeEditor from './NodeEditor' import { EditorComponentType, updateProperty } from './Util' export const PersistentAnchorNodeEditor: EditorComponentType = (props) => { const { t } = useTranslation() const anchor = useComponent(props.entity, PersistentAnchorComponent) return ( ) } export default PersistentAnchorNodeEditor