chore(ui): lint

This commit is contained in:
psychedelicious
2024-11-06 15:40:07 +10:00
committed by Kent Keirsey
parent 63fb3a15e9
commit a01d44f813
3 changed files with 4 additions and 4 deletions

View File

@@ -4,6 +4,8 @@ import { atom } from 'nanostores';
/**
* A fallback non-writable atom that always returns `false`, used when a nanostores atom is only conditionally available
* in a hook or component.
*
* @knipignore
*/
export const $false: ReadableAtom<boolean> = atom(false);
/**