kafka-ui/kafka-ui-react-app/src/components/common/NewTable/index.ts
Oleg Shur 21f17ad39e
Use new table component for topics list (#2426)
* Use new table component for topics list

* Fix styling

* Migrate BrokerLogdir to new tables

* Improve test coverage
2022-08-12 15:36:07 +03:00

9 lines
214 B
TypeScript

import Table, { TableProps } from './Table';
import TimestampCell from './TimestampCell';
import SizeCell from './SizeCell';
export type { TableProps };
export { TimestampCell, SizeCell };
export default Table;