nicolium: column: types in preparation for new feature

Signed-off-by: nicole mikołajczyk <git@mkljczk.pl>
This commit is contained in:
nicole mikołajczyk
2026-03-17 16:01:11 +01:00
parent 9619222cbc
commit 41ada99fdf

View File

@ -8,7 +8,9 @@ import { useFrontendConfig } from '@/hooks/use-frontend-config';
import { Card, CardBody, CardHeader, CardTitle, type CardSizes } from './card';
type IColumnHeader = Pick<IColumn, 'label' | 'backHref' | 'backParams' | 'className' | 'action'>;
interface IColumnHeader extends Pick<IColumn, 'backHref' | 'backParams' | 'className' | 'action'> {
label: JSX.Element;
}
/** Contains the column title with optional back button. */
const ColumnHeader: React.FC<IColumnHeader> = ({