import React, { createContext, useContext } from 'react'; const MyContext = createContext('defaultValue'); function Child() { const text = useContext(MyContext); return