Split from https://github.com/twentyhq/twenty/pull/4518 Co-authored-by: Charles Bochet <charlesBochet@users.noreply.github.com>
7 lines
159 B
TypeScript
7 lines
159 B
TypeScript
import { createState } from 'twenty-ui';
|
|
|
|
export const isVerifyPendingState = createState<boolean>({
|
|
key: 'isVerifyPendingState',
|
|
defaultValue: false,
|
|
});
|