8 lines
181 B
TypeScript
8 lines
181 B
TypeScript
|
|
import { atom } from 'jotai';
|
||
|
|
|
||
|
|
export type CreateSpaceModalState = {
|
||
|
|
spaceId?: string;
|
||
|
|
};
|
||
|
|
|
||
|
|
export const createSpaceModalAtom = atom<CreateSpaceModalState | undefined>(undefined);
|