123456789101112131415161718192021222324252627282930 |
- // Copyright 2017-2020 @polkadot/react-query authors & contributors
- // This software may be modified and distributed under the terms
- // of the Apache-2.0 license. See the LICENSE file for details.
- import BN from 'bn.js';
- import React from 'react';
- import { useBlockTime } from '@polkadot/react-hooks';
- interface Props {
- blocks?: BN;
- children?: React.ReactNode;
- className?: string;
- label?: React.ReactNode;
- }
- function BlockToTime ({ blocks, children, className = '', label }: Props): React.ReactElement<Props> | null {
- const [, text] = useBlockTime(blocks);
- if (blocks?.ltn(0)) {
- return null;
- }
- return (
- <div className={className}>
- {label || ''}{text}{children}
- </div>
- );
- }
- export default React.memo(BlockToTime);
|