feat(twenty-front/workspace-menu): improve workspace menu (#10642)

New workspace menu
This commit is contained in:
Antoine Moreaux
2025-03-17 16:31:31 +01:00
committed by GitHub
parent 78b3b7edab
commit bda835b9f8
28 changed files with 706 additions and 265 deletions

View File

@ -0,0 +1,8 @@
import { atom } from 'recoil';
export const multiWorkspaceDropdownState = atom<
'default' | 'workspaces-list' | 'themes'
>({
key: 'multiWorkspaceDropdownState',
default: 'default',
});