create store to store previously checked element

This commit is contained in:
CroogQT 2022-05-05 12:13:02 -07:00
parent 74e2781697
commit 6f85f6d755

View File

@ -0,0 +1,7 @@
import { createState } from '../state';
export const previousPKCheckState = createState<{ hidden: boolean }>(
{ hidden: false },
{ persist: false },
);