abadesalex's picture
plot and logic
8765030
raw
history blame
125 Bytes
import { createContext } from "react";
export const WordsContext = createContext({
words: [],
fetchWords: () => {},
});