UNPKG

393 BTypeScriptView Raw
1import React from 'react';
2export declare function Table({ children }: {
3 children: any;
4}): React.JSX.Element;
5export declare function Tr({ children, isOdd }: {
6 children: any;
7 isOdd: any;
8}): React.JSX.Element;
9export declare function Td({ children }: {
10 children: any;
11}): React.JSX.Element;
12export declare function Th({ children }: {
13 children: any;
14}): React.JSX.Element;