mirror of
https://github.com/scm-manager/scm-manager.git
synced 2025-11-06 21:45:43 +01:00
implemented avatar and information extension point for svn, hg and git
This commit is contained in:
15
scm-plugins/scm-git-plugin/src/main/js/GitAvatar.js
Normal file
15
scm-plugins/scm-git-plugin/src/main/js/GitAvatar.js
Normal file
@@ -0,0 +1,15 @@
|
||||
//@flow
|
||||
import React from 'react';
|
||||
|
||||
type Props = {
|
||||
};
|
||||
|
||||
class GitAvatar extends React.Component<Props> {
|
||||
|
||||
render() {
|
||||
return <img src="/images/git-logo.png" alt="Git Logo" />;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
export default GitAvatar;
|
||||
Reference in New Issue
Block a user