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