mirror of
https://github.com/captbaritone/webamp.git
synced 2026-01-24 02:36:00 +00:00
16 lines
387 B
JavaScript
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);
|