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