* Proof of concept ComponentState * Migrate to createState and createFamilyState * Refactor * Fix * Fix tests * Fix lint * Fix tests * Re-enable coverage
7 lines
200 B
TypeScript
7 lines
200 B
TypeScript
import { createState } from '@/ui/utilities/state/utils/createState';
|
|
|
|
export const isRightDrawerOpenState = createState<boolean>({
|
|
key: 'ui/layout/is-right-drawer-open',
|
|
defaultValue: false,
|
|
});
|