mirror of
https://github.com/pezkuwichain/pezkuwi-apps.git
synced 2026-04-22 08:58:00 +00:00
8 lines
242 B
TypeScript
8 lines
242 B
TypeScript
import React from 'react';
|
|
interface Props {
|
|
className?: string;
|
|
}
|
|
declare function ChainInfo({ className }: Props): React.ReactElement<Props>;
|
|
declare const _default: React.MemoExoticComponent<typeof ChainInfo>;
|
|
export default _default;
|