import React, { createContext, useContext } from 'react'; const MyContext = createContext('defaultValue'); function Child() { const text = useContext(MyContext); return
안녕하세요? {text}
} function Parent() { return } function GrandParent() { return } function ContextSample() { return ( ) } export default ContextSample;