jobiqo-cl
Version:
[](https://circleci.com/gh/jobiqo/jobiqo-cl)
17 lines (16 loc) • 320 B
TypeScript
/**
* @file index.tsx
*
* @fileoverview Displays a table body .
*/
import React from 'react';
interface TableBodyProps {
/**
* Text for the button
*
* @default null
*/
children?: React.ReactNode;
}
export declare const TableBody: ({ children }: TableBodyProps) => JSX.Element;
export {};