import React, {Component, PropTypes} from 'react'; import Defs from './Defs'; class Use extends Component{ static displayName = 'Use'; static propType = { href: PropTypes.string }; render() { return ; } } export default Use;