@uidu/docs
Version:
Utilities for building documentation
15 lines (14 loc) • 393 B
TypeScript
import React from 'react';
export declare function Table({ children }: {
children: any;
}): React.JSX.Element;
export declare function Tr({ children, isOdd }: {
children: any;
isOdd: any;
}): React.JSX.Element;
export declare function Td({ children }: {
children: any;
}): React.JSX.Element;
export declare function Th({ children }: {
children: any;
}): React.JSX.Element;