import React from 'react' import { useTranslation } from 'react-i18next' import { getComponent } from '@xrengine/engine/src/ecs/functions/ComponentFunctions' import { MountPoint, MountPointComponent } from '@xrengine/engine/src/scene/components/MountPointComponent' import InputGroup from '../inputs/InputGroup' import SelectInput from '../inputs/SelectInput' import NodeEditor from './NodeEditor' import { EditorPropType, updateProperty } from './Util' const MountPointTypes = [{ label: 'Seat', value: MountPoint.seat }] export const MountPointNodeEditor: React.FC = (props) => { const { t } = useTranslation() const mountPointComponent = getComponent(props.entity, MountPointComponent) return ( ) } export default MountPointNodeEditor