7 lines
234 B
TypeScript
7 lines
234 B
TypeScript
import { createStateScopeMap } from '@/ui/utilities/recoil-scope/utils/createStateScopeMap';
|
|
|
|
export const isViewBarExpandedScopedState = createStateScopeMap<boolean>({
|
|
key: 'isViewBarExpandedScopedState',
|
|
defaultValue: true,
|
|
});
|