10 lines
161 B
TypeScript
10 lines
161 B
TypeScript
import { atom } from "recoil";
|
|
|
|
const selectedSuggestionState = atom({
|
|
key: "selectedSuggestion",
|
|
default: 0
|
|
});
|
|
|
|
export {
|
|
selectedSuggestionState,
|
|
} |