Henry Zhu 0f823beeb1 Newlines in fixtures (#6044)
* write newlines for fixtures

* rerun fixtures
2017-08-02 15:35:29 -04:00

15 lines
266 B
JavaScript

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