UNPKG

jobiqo-cl

Version:

[![CircleCI](https://circleci.com/gh/jobiqo/jobiqo-cl.svg?style=svg&circle-token=5a24efa5b8bbc4879276123e77d0d3f35ca7144c)](https://circleci.com/gh/jobiqo/jobiqo-cl)

21 lines (20 loc) 482 B
/** * @file index.tsx * * @fileoverview Displays a table row. */ import React, { MouseEvent } from 'react'; interface TableRowProps { /** * Text for the button * * @default null */ children?: React.ReactNode; /** * The event when clicking a row. */ onClick?: (event: React.MouseEvent<HTMLTableRowElement, MouseEvent> | any) => void; } export declare const TableRow: ({ children, onClick }: TableRowProps) => JSX.Element; export {};