blob: 82831d8c1ab0d026512af405946f4a5d913eaca5 (
plain)
1
2
3
4
5
6
7
8
|
import React from 'react';
export default React.createClass({
render: function () {
const url = `${baseUrl}/quality_gates/show/${this.props.gate}`;
return <a href={url}>{this.props.children}</a>;
}
});
|