refactor(infra): move currentPageAtom to core (#5332)

Remove `currentPageAtom` from `infra` to `frontend/core.`
This commit is contained in:
EYHN
2023-12-25 03:34:28 +00:00
parent e1bd13a018
commit 9493bd99f9
8 changed files with 10 additions and 11 deletions

View File

@@ -4,4 +4,3 @@ export const loadedPluginNameAtom = atom<string[]>([]);
export * from './root-store';
export * from './settings';
export * from './workspace';

View File

@@ -1,3 +0,0 @@
import { atom } from 'jotai';
export const currentPageIdAtom = atom<string | null>(null);