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