// const styles = { // button: { // fontSize: 12, // '&:hover': { // background: 'blue' // } // }, // ctaButton: { // extend: 'button', // '&:hover': { // background: color('blue') // .darken(0.3) // .hex() // } // }, // '@media (min-width: 1024px)': { // button: { // width: 200 // } // } // }; // const { classes } = jss.createStyleSheet(styles).attach(); /** * Panel */ class Panel extends React.Component { render() { const { width, height, title, children } = this.props; return
{title}
{children}
; } } export default Panel;