UNPKG

@zendesk/retrace

Version:

define and capture Product Operation Traces along with computed metrics with an optional friendly React beacon API

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 {};