File size: 125 Bytes
8765030
 
 
 
 
 
1
2
3
4
5
6
7
import { createContext } from "react";

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