Raphaël Bosi
2025-01-23 14:44:21 +01:00
committed by GitHub
parent cc53cb3b7b
commit 337b6a86ab
21 changed files with 582 additions and 83 deletions

View File

@ -0,0 +1,10 @@
import { createState } from '@ui/utilities/state/utils/createState';
import { IconComponent } from 'twenty-ui';
export const commandMenuPageInfoState = createState<{
title: string | undefined;
Icon: IconComponent | undefined;
}>({
key: 'command-menu/commandMenuPageInfoState',
defaultValue: { title: undefined, Icon: undefined },
});