UNPKG

@zendesk/react-measure-timing-hooks

Version:

react hooks for measuring time to interactive and time to render of components

9 lines (8 loc) 255 B
import React from 'react'; import type { Ticket as TicketType } from './mockTickets'; interface TicketListProps { tickets: TicketType[]; onTicketClick: (id: number) => void; } export declare const TicketList: React.FC<TicketListProps>; export {};