create store to store previously checked element
This commit is contained in:
parent
2979a64ce3
commit
2e38e62101
|
|
@ -0,0 +1,7 @@
|
|||
import { createState } from '../state';
|
||||
|
||||
export const previousPKCheckState = createState<{ hidden: boolean }>(
|
||||
{ hidden: false },
|
||||
{ persist: false },
|
||||
);
|
||||
|
||||
Loading…
Reference in New Issue