@web3mq/react-components
Version:
web3mq-react-components
8 lines (7 loc) • 385 B
TypeScript
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>;