2017-01-19 21:36:18 -05:00

13 lines
262 B
JavaScript

class AnchorLink extends Component {
render() {
var _props = this.props;
const isExternal = _props.isExternal,
children = _props.children;
if (isExternal) {
return <a>{children}</a>;
}
return <Link>{children}</Link>;
}
}