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