Files
twenty/front/src/modules/auth/states/isAuthenticatingState.ts
Félix Malfait f6e1e626fd Make the sidebar collapsable (#260)
* Make the sidebar collapsable

* Fix padding

* Automatically collapase sidebar and hide container on mobile

* Hide navbar content when navbar is collapsed

* Update naming convention for states
2023-06-09 15:09:21 +02:00

7 lines
138 B
TypeScript

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