// Copyright 2017-2026 @pezkuwi/react-query authors & contributors // SPDX-License-Identifier: Apache-2.0 import React from 'react'; import { useApi } from '@pezkuwi/react-hooks'; interface Props { children?: React.ReactNode; className?: string; label?: React.ReactNode; } function NodeName ({ children, className = '', label }: Props): React.ReactElement { const { systemName } = useApi(); return (
{label || ''}{systemName}{children}
); } export default React.memo(NodeName);