* create scopes * fix import bug * add useView hook * wip * wip * currentViewId is now retrieved via useView * working on sorts with useView * refactor in progress * refactor in progress * refactor in progress * refactor in progress * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * fix code * fix code * wip * push * Fix issue dependencies * Fix resize --------- Co-authored-by: bosiraphael <raphael.bosi@gmail.com>
7 lines
236 B
TypeScript
7 lines
236 B
TypeScript
import { createScopedState } from '@/ui/utilities/recoil-scope/utils/createScopedState';
|
|
|
|
export const currentViewIdScopedState = createScopedState<string | undefined>({
|
|
key: 'currentViewIdScopedState',
|
|
defaultValue: undefined,
|
|
});
|