zent
Version:
一套前端设计语言和基于React的实现
16 lines (12 loc) • 335 B
JavaScript
import React, { PropTypes } from 'react';
const Item = function (props) {
const { href, name, ...others } = props;
if (props.children) {
return props.children;
}
return href ? <a {...others} href={href}>{name}</a> : <span {...others}>{name}</span>;
};
Item.propTypes = {
href: PropTypes.string
};
export default Item;