fluid-react
Version:
Grid system for React
16 lines (11 loc) • 404 B
JavaScript
import { withMediaQuery } from './MediaQuery';
import { withBeforeAfter } from './BeforeAfter';
import { withHover } from './Hover';
export { default as Match } from './Match';
function withPseudo(Comp) {
return withBeforeAfter(withHover(Comp));
}
function withCss(Comp) {
return withPseudo(withMediaQuery(Comp));
}
export { withMediaQuery, withBeforeAfter, withHover, withPseudo, withCss };