2025-01-23 11:31:05 +08:00
|
|
|
import { atom } from 'jotai';
|
2025-03-07 13:44:20 +08:00
|
|
|
import { atomWithStorage } from "jotai/utils";
|
2025-01-23 11:31:05 +08:00
|
|
|
|
2025-03-07 13:44:20 +08:00
|
|
|
export const themeAtom = atomWithStorage('theme', 'light')
|
2025-01-23 11:31:05 +08:00
|
|
|
export const linkTypeAtom = atom('');
|