80a562d90d
Closes #1122
7 lines
148 B
TypeScript
7 lines
148 B
TypeScript
import { atom } from 'recoil';
|
|
|
|
export const currentViewIdState = atom<string | undefined>({
|
|
key: 'currentViewIdState',
|
|
default: undefined,
|
|
});
|