mirror of
https://github.com/twentyhq/twenty
synced 2026-04-21 13:37:22 +00:00
6 lines
179 B
TypeScript
6 lines
179 B
TypeScript
import { createState } from '@ui/utilities/state/utils/createState';
|
|
|
|
export const isDebugModeState = createState<boolean>({
|
|
key: 'isDebugModeState',
|
|
defaultValue: false,
|
|
});
|