mirror of
https://github.com/Qortal/names.git
synced 2025-06-14 18:21:21 +00:00
10 lines
175 B
TypeScript
10 lines
175 B
TypeScript
import { atom } from 'jotai';
|
|
|
|
export enum EnumTheme {
|
|
LIGHT = 1,
|
|
DARK = 2,
|
|
}
|
|
|
|
// Atom to hold the current theme
|
|
export const themeAtom = atom<EnumTheme>(EnumTheme.DARK);
|