/** @jsx h */ import { h } from 'preact'; import store from 'common/store'; const withTheme = PlainComponent => { const ThemedComponent = props => { const { mods = {} } = props; const theme = store.get('theme'); return ; }; return ThemedComponent; }; export default withTheme;