Files
twenty/packages/twenty-front/src/modules/captcha/states/captchaTokenState.ts

7 lines
196 B
TypeScript

import { createState } from '@ui/utilities/state/utils/createState';
export const captchaTokenState = createState<string | undefined>({
key: 'captchaTokenState',
defaultValue: undefined,
});