summaryrefslogtreecommitdiff
path: root/app/client/common/header.component.js
diff options
context:
space:
mode:
Diffstat (limited to 'app/client/common/header.component.js')
-rw-r--r--app/client/common/header.component.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/app/client/common/header.component.js b/app/client/common/header.component.js
index bb2ec04..844e1ef 100644
--- a/app/client/common/header.component.js
+++ b/app/client/common/header.component.js
@@ -4,12 +4,13 @@ import { connect } from 'react-redux'
function Header(props) {
return (
<header>
- live cortex
+ live cortex | {props.fps} fps
</header>
)
}
const mapStateToProps = state => ({
+ fps: state.live.fps
})
const mapDispatchToProps = (dispatch, ownProps) => ({