ES6 Plato on Github
Report Home
Summary Display
components/Logbook/availableEventsDialogue.js
Maintainability
82.32
Lines of code
11
Difficulty
8.00
Estimated Errors
0.05
Function weight
By Complexity
By SLOC
import React from 'react'; import OverlayBox from '../OverlayBox'; class availableEventsDialogue extends React.Component { render() { return (<span style={{ color: '#888888' }}> {this.props.newlyArrivedEventCount ? this.props.newlyArrivedEventCount : 0} new logs available. </span>) } } export default availableEventsDialogue;