stream-chat-react
Version:
React components to create chat conversations or livestream style chat
12 lines (11 loc) • 389 B
TypeScript
import React from 'react';
import type { PollVote as PollVoteType } from 'stream-chat';
type PollVoteProps = {
vote: PollVoteType;
};
export declare const PollVote: ({ vote }: PollVoteProps) => React.JSX.Element;
export type PollVoteListingProps = {
votes: PollVoteType[];
};
export declare const PollVoteListing: ({ votes }: PollVoteListingProps) => React.JSX.Element;
export {};