import React, { Component } from 'react' import './breakpoints.css' class Breakpoint extends Component { render () { const { mobile, children } = this.props if (mobile) { return (
{children}
) } return (
{children}
) } } Breakpoint.propTypes = { children: React.PropTypes.array, mobile: React.PropTypes.bool, } export default Breakpoint