
* Use new table component for topics list * Fix styling * Migrate BrokerLogdir to new tables * Improve test coverage
9 lines
214 B
TypeScript
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;
|