import React from 'react'; import {buildURI} from '../core'; import {defaultProps, PropTypes, PropsNotForwarded} from '../metaProps'; class CSVLink extends React.Component { constructor(props) { super(props); } render(){ return ( {this.props.children} ) } } CSVLink.defaultProps = defaultProps; CSVLink.PropTypes = PropTypes; CSVLink.PropsNotForwarded = PropsNotForwarded; export default CSVLink;