9 lines
225 B
TypeScript
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,
|
|
});
|