webamp/js/Kbps.jsx
Jordan Eldredge e37d19d9ac Move kbps and khz to redux
These are the last text nodes, so we can finally remove the old Font file.
2016-07-12 09:16:20 -07:00

16 lines
391 B
JavaScript

// Single line text display that can animate and hold multiple registers
import React from 'react';
import {connect} from 'react-redux';
import CharacterString from './CharacterString.jsx';
class Kbps extends React.Component {
render() {
return <CharacterString id='kbps'>
{this.props.kbps}
</CharacterString>;
}
}
module.exports = connect(state => state.media)(Kbps);