* - Implemented recoil scoped state - Implemented SingleEntitySelect - Implemented keyboard shortcut up/down select * Added useRecoilScopedValue * Fix storybook * Fix storybook * Fix storybook * Fix storybook --------- Co-authored-by: Charles Bochet <charles@twenty.com>
4 lines
110 B
TypeScript
4 lines
110 B
TypeScript
import { createContext } from 'react';
|
|
|
|
export const RecoilScopeContext = createContext<string | null>(null);
|