Files
SCM-Manager/scm-plugins/scm-hg-plugin/src/main/js/HgAvatar.js
2018-08-27 15:47:02 +02:00

17 lines
273 B
JavaScript

//@flow
import React from 'react';
type Props = {
};
class HgAvatar extends React.Component<Props> {
render() {
// TODO we have to use Image from ui-components
return <img src="/scm/images/hg-logo.png" alt="Mercurial Logo" />;
}
}
export default HgAvatar;