import { useAtom } from "jotai" import { atomWithStorage } from "jotai/utils" type Config = { style: "new-york-v4" packageManager: "npm" | "yarn" | "pnpm" | "bun" installationType: "cli" | "manual" } const configAtom = atomWithStorage("config", { style: "new-york-v4", packageManager: "pnpm", installationType: "cli", }) export function useConfig() { return useAtom(configAtom) }