mirror of
https://github.com/estruyf/vscode-front-matter.git
synced 2026-05-04 04:22:33 +02:00
7 lines
204 B
TypeScript
7 lines
204 B
TypeScript
import { atom } from 'recoil';
|
|
import { DashboardData } from '../../../models/DashboardData';
|
|
|
|
export const ViewDataAtom = atom<DashboardData | undefined>({
|
|
key: 'ViewDataAtom',
|
|
default: undefined
|
|
}); |