cnap-cobre/synapse

View on GitHub
frontend/src/physical_layout/DefaultLayout/DefaultFooter/DefaultFooter.js

Summary

Maintainability
A
1 hr
Test Coverage
import React, { Component } from 'react';
 
export default class DefaultFooter extends Component {
Function `render` has 31 lines of code (exceeds 25 allowed). Consider refactoring.
render() {
return (
<footer className="footer">
<div className="container-fluid">
<nav className="pull-left">
<ul>
<li>
<a href="#">
Footer Link 1
</a>
</li>
<li>
<a href="#">
Footer Link 2
</a>
</li>
<li>
<a href="#">
Footer Link 3
</a>
</li>
</ul>
</nav>
<div className="copyright pull-right">
&copy;
{new Date().getFullYear()}
{' '}
CNAP Center of Biomedical Research
</div>
</div>
</footer>
);
}
}