1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00

Restrict title name to be only string

Signed-off-by: Sebastian Malton <sebastian@malton.name>
This commit is contained in:
Sebastian Malton 2022-02-08 14:25:49 -05:00
parent d4d2da1d28
commit f7ad6f5d1f

View File

@ -12,7 +12,7 @@ import type { TableCellProps } from "../table";
*/
export interface TitleCellProps {
className?: string;
title: React.ReactNode;
title: string;
}
export interface CategoryColumnRegistration {