UNPKG

conduction-components

Version:

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

12 lines (11 loc) 298 B
import * as React from "react"; interface InputTypes { inputType: "text" | "email"; } interface EditableTableRowProps { thead: string; value: string; handleSave: (value: any) => void; } export declare const EditableTableRow: React.FC<EditableTableRowProps & InputTypes>; export {};