6 lines
107 B
TypeScript
6 lines
107 B
TypeScript
import { atom } from "jotai";
|
|
|
|
const searchboxLastInputAtom = atom(0);
|
|
|
|
export { searchboxLastInputAtom };
|