import { createContext } from "react"; export const WordsContext = createContext({ words: [], fetchWords: () => {}, });