mirror of
https://github.com/reactjs/react.dev.git
synced 2026-02-24 04:33:10 +00:00
11 lines
249 B
JavaScript
11 lines
249 B
JavaScript
function withTheme(Component) {
|
|
return function ThemedComponent(props) {
|
|
// highlight-range{2-4}
|
|
return (
|
|
<ThemeContext.Consumer>
|
|
{theme => <Component {...props} theme={theme} />}
|
|
</ThemeContext.Consumer>
|
|
);
|
|
};
|
|
}
|