7 lines
129 B
TypeScript
7 lines
129 B
TypeScript
import { atom } from 'recoil';
|
|
|
|
export const isDebugModeState = atom<boolean>({
|
|
key: 'isDebugModeState',
|
|
default: false,
|
|
});
|