mirror of
https://github.com/pezkuwichain/pezkuwi-apps.git
synced 2026-04-22 07:48:00 +00:00
25 lines
552 B
TypeScript
25 lines
552 B
TypeScript
// 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<Props> {
|
|
const { systemName } = useApi();
|
|
|
|
return (
|
|
<div className={className}>
|
|
{label || ''}{systemName}{children}
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export default React.memo(NodeName);
|