stream-chat-react
Version:
React components to create chat conversations or livestream style chat
9 lines (8 loc) • 327 B
TypeScript
import React from 'react';
import type { PollFormState } from './types';
export type PollCreationDialogControlsProps = {
close: () => void;
errors: string[];
state: PollFormState;
};
export declare const PollCreationDialogControls: ({ close, errors, state, }: PollCreationDialogControlsProps) => React.JSX.Element;