1
0
mirror of https://github.com/lensapp/lens.git synced 2024-09-11 09:25:26 +03:00

fix: Reexport TableCellProps type

Signed-off-by: Sebastian Malton <sebastian@malton.name>
This commit is contained in:
Sebastian Malton 2023-06-01 08:34:33 -04:00
parent 683ac4efcc
commit b1365f88bb

View File

@ -14,6 +14,8 @@ import type { TableCellProps } from "@k8slens/list-layout";
export type TableCellElem = React.ReactElement<TableCellProps>;
export type { TableCellProps };
export class TableCell extends React.Component<TableCellProps> {
constructor(props: TableCellProps) {
super(props);