UNPKG

react-super-responsive-table

Version:

react-super-responsive-table converts your table data to a user-friendly list in mobile view.

8 lines (7 loc) 238 B
import React from 'react'; import { TrProps } from '../types'; type TrInnerProps = TrProps & { headers: string[]; }; declare function TrInner({ children, inHeader, ...props }: TrInnerProps): React.JSX.Element; export default TrInner;