feat: add novice guide for quick search arrow button (#1493)

This commit is contained in:
JimmFly
2023-03-10 14:17:26 +08:00
committed by GitHub
parent 7a54e97823
commit 3ef8e2db83
16 changed files with 238 additions and 34 deletions
+5
View File
@@ -0,0 +1,5 @@
import { atom } from 'jotai';
import { atomWithStorage } from 'jotai/utils';
export const isFirstLoadAtom = atomWithStorage<boolean>('isFirstLoad', true);
export const openTipsAtom = atom<boolean>(false);