mirror of
https://github.com/estruyf/vscode-front-matter.git
synced 2026-03-28 17:42:40 +01:00
7 lines
155 B
TypeScript
7 lines
155 B
TypeScript
import { atom } from 'recoil';
|
|
|
|
export const SelectedStructureFolderAtom = atom<string | null>({
|
|
key: 'SelectedStructureFolderAtom',
|
|
default: null
|
|
});
|