UNPKG

@worldresources/gfw-components

Version:

React component library for the Global Forest Watch project.

15 lines (10 loc) 271 B
import React from 'react'; import PropTypes from 'prop-types'; import { Media } from '../index'; const Desktop = (props) => ( <Media greaterThanOrEqual="small">{props.children}</Media> ); Desktop.propTypes = { children: PropTypes.node, }; export default Desktop;