5 lines
134 B
TypeScript
5 lines
134 B
TypeScript
import { atom } from 'nanostores';
|
|
|
|
export const teamPopupOpen = atom(false);
|
|
export const teamPopupName = atom<string | null>(null);
|