UNPKG

conduction-components

Version:

React (Gatsby) components used within the Conduction Skeleton Application (and its implementations)

12 lines (11 loc) 274 B
import * as React from "react"; export interface IMessageTableItem { organisation: string; date: Date; id: string; } interface MessagesTableProps { messages: IMessageTableItem[]; } export declare const MessagesTable: React.FC<MessagesTableProps>; export {};