UNPKG

react-themable-hoc

Version:

React higher-order-components that allow for css-in-js-style themes.

12 lines (8 loc) 289 B
import React from 'react'; const InnerComponent = ({ classNames }) => ( <div className={classNames.wrapper}> <p className={classNames.content}>Press 't' to toggle between themes</p> </div> ); InnerComponent.displayName = 'InnerComponent'; export default InnerComponent;