chore: Wrap footer with React's memo hoc

This commit is contained in:
Johannes Schill 2019-01-17 09:15:47 +01:00
parent 00646b80c6
commit 71121e1dbe

View File

@ -9,7 +9,7 @@ interface Props {
newGrafanaVersion: string;
}
export const Footer: SFC<Props> = ({appName, buildVersion, buildCommit, newGrafanaVersionExists, newGrafanaVersion}) => {
export const Footer: SFC<Props> = React.memo(({appName, buildVersion, buildCommit, newGrafanaVersionExists, newGrafanaVersion}) => {
return (
<footer className="footer">
<div className="text-center">
@ -45,6 +45,6 @@ export const Footer: SFC<Props> = ({appName, buildVersion, buildCommit, newGrafa
</div>
</footer>
);
};
});
export default Footer;