UNPKG

matrix-react-sdk

Version:
10 lines (9 loc) 265 B
import { FC } from "react"; import { Room } from "matrix-js-sdk/src/matrix"; interface IProps { room: Room; onJoinButtonClicked: () => void; onRejectButtonClicked: () => void; } declare const RoomPreviewCard: FC<IProps>; export default RoomPreviewCard;