// Create a theme context, defaulting to light theme // highlight-next-line const ThemeContext = React.createContext('light'); const ThemedButton = props => { // highlight-range{1,3-5} // The ThemedButton receives the theme from context return ( {theme =>