Files
twenty/front/src/modules/auth/states/displayGoogleLogin.ts
T
Deepak Singh 9c09da18db fix: Create a client config function that is retrieved when app is loading (#496)
* fix: Create a client config function that is retrieved when app is loaded

* update index.tsx

* fixed linter issues
2023-07-05 00:28:59 +02:00

7 lines
132 B
TypeScript

import { atom } from 'recoil';
export const displayGoogleLogin = atom<boolean>({
key: 'displayGoogleLogin',
default: true,
});