sticky-horse
Version:
With StickyHorse allow your users to send feedback to your team.
15 lines (14 loc) • 422 B
TypeScript
import React from 'react';
import { User } from '../types';
interface ActiveUsersTableProps {
users: User[];
currentUserId: string;
onTrackUser: (userId: string) => void;
trackedUserId: string | null;
isLoading?: boolean;
isDemoMode?: boolean;
currentPage: number;
setCurrentPage: (page: number) => void;
}
export declare const ActiveUsersTable: React.FC<ActiveUsersTableProps>;
export {};