* 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
7 lines
138 B
TypeScript
7 lines
138 B
TypeScript
import { atom } from 'recoil';
|
|
|
|
export const isAuthenticatingState = atom<boolean>({
|
|
key: 'isAuthenticatingState',
|
|
default: true,
|
|
});
|