lml-main
Version:
This is now a mono repository published into many standalone packages.
11 lines (10 loc) • 313 B
TypeScript
import * as React from 'react';
import { CourierModel } from '@lml/cosmo-ts-data';
export interface CouriersTableProps {
couriers: CourierModel[];
}
export declare class CouriersTable extends React.Component<CouriersTableProps> {
render(): JSX.Element;
private renderRows;
private headerStyles;
}