rc-table
Version:
table ui component for react
9 lines (8 loc) • 310 B
TypeScript
import * as React from 'react';
export interface FooterRowProps {
children?: React.ReactNode;
className?: string;
style?: React.CSSProperties;
onClick?: (e?: React.MouseEvent<HTMLElement>) => void;
}
export default function FooterRow({ children, ...props }: FooterRowProps): React.JSX.Element;