import { useAtom } from "jotai" import { atomWithStorage } from "jotai/utils" import { Style } from "@/registry/styles" import { Theme } from "@/registry/themes" type Config = { style: Style["name"] theme: Theme["name"] radius: number } const configAtom = atomWithStorage("config", { style: "new-york", theme: "zinc", radius: 0.5, }) export function useConfig() { return useAtom(configAtom) }