satupeta-main/app/(modules)/maps/state/active-tab.ts
2026-02-23 12:21:05 +07:00

5 lines
138 B
TypeScript
Executable File

import { atom } from "jotai";
export type tabType = "category" | "organization";
export const activeTabAtom = atom<tabType>("category");