ES6 Plato on Github
Report Home
Summary Display
components/Footer.js
Maintainability
84.15
Lines of code
22
Difficulty
6.50
Estimated Errors
0.08
Function weight
By Complexity
By SLOC
import React from 'react'; import { Navbar } from 'react-bootstrap'; import { Link } from 'react-router-dom'; import logo from '../images/ebs.gif'; import ui from '../config/ui/config.js'; export class Footer extends React.Component { render() { return (<Navbar inverse fixedBottom > <Navbar.Header> <Navbar.Brand > <Link to="/" style={{ fontSize: '15px' }}><img alt="" src={logo} className='logo' />{ui.footer.text}</Link> </Navbar.Brand> </Navbar.Header> </Navbar>) } } export default Footer