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