Files
twenty/packages/twenty-front/src/modules/client-config/states/captchaState.ts
T

9 lines
225 B
TypeScript

import { createState } from '@ui/utilities/state/utils/createState';
import { Captcha } from '~/generated/graphql';
export const captchaState = createState<Captcha | null>({
key: 'captchaState',
defaultValue: null,
});