UNPKG

@web3mq/react-components

Version:
8 lines (7 loc) 385 B
import React, { PropsWithChildren } from 'react'; import { ComponentContextValue } from '../../context/ComponentContext'; export declare type ThreadProps = { Input?: ComponentContextValue['Input']; Message?: ComponentContextValue['Message']; }; export declare const Thread: React.MemoExoticComponent<(props: PropsWithChildren<ThreadProps>) => React.JSX.Element | null>;