11 lines
213 B
TypeScript
11 lines
213 B
TypeScript
import { suggestionItem } from "@/global";
|
|
import { atom } from "recoil";
|
|
|
|
const suggestionsState = atom({
|
|
key: "oneSearchSuggestions",
|
|
default: [] as suggestionItem[]
|
|
});
|
|
|
|
export {
|
|
suggestionsState,
|
|
} |