sparkast/components/state/suggestionSelection.ts

10 lines
161 B
TypeScript

import { atom } from "recoil";
const selectedSuggestionState = atom({
key: "selectedSuggestion",
default: 0
});
export {
selectedSuggestionState,
}