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) 211 B
import React from 'react'; import { TdProps } from '../types'; type TdInnerProps = TdProps & { headers: string[]; }; declare function TdInner(props: TdInnerProps): React.JSX.Element; export default TdInner;