Files
cinny/src/app/state/selectedTab.ts
T

9 lines
172 B
TypeScript
Raw Normal View History

2023-06-12 21:15:23 +10:00
import { atom } from 'jotai';
export enum SidebarTab {
Home = 'Home',
People = 'People',
}
export const selectedTabAtom = atom<SidebarTab | string>(SidebarTab.Home);