import { createContext, useContext, useState } from "react"; const ThemeContext = createContext("light"); function App() { const [theme, setTheme] = useState("light"); return ( ); } function Button() { const { theme, setTheme } = useContext(ThemeContext); return ( setTheme(t => t==="light"?"dark":"light")}> Current: {theme} ); }