Spaces:
Sleeping
Sleeping
File size: 377 Bytes
8765030 1ad4e76 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | import { createContext } from "react";
export const WordsContext = createContext({
words: [],
fetchWords: () => {},
});
export const CommonCategoryWordsContext = createContext({
CommonCategoryWords: [],
setCommonCategoryWords: () => {},
});
export const SemanticDifferencesContext = createContext({
SemanticDifferences: [],
setSemanticDifferences: () => {},
});
|