webamp/js/Khz.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
387 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 Khz extends React.Component {
render() {
return <CharacterString id='khz'>
{this.props.khz}
</CharacterString>;
}
}
module.exports = connect(state => state.media)(Khz);