Skip to content

Instantly share code, notes, and snippets.

View michal-wrzosek's full-sized avatar
👨‍💻
Coding from Rotterdam

Michał Wrzosek michal-wrzosek

👨‍💻
Coding from Rotterdam
View GitHub Profile
const theme = {
fontColor: 'red',
};
// HOC
const withTheme = (Component) => props => <Component {...props} theme={theme} />;
// Component
const List = ({ items, theme }) => (
<ul style={{ color: theme.fontColor }}>