mirror of
https://github.com/captbaritone/webamp.git
synced 2026-07-22 17:47:16 +00:00
16 lines
378 B
TypeScript
16 lines
378 B
TypeScript
import React from "react";
|
|
|
|
import CharacterString from "../CharacterString";
|
|
import * as Selectors from "../../selectors";
|
|
import { useTypedSelector } from "../../hooks";
|
|
|
|
const Khz = React.memo(() => {
|
|
const khz = useTypedSelector(Selectors.getKhz);
|
|
return (
|
|
<div id="khz">
|
|
<CharacterString>{khz || ""}</CharacterString>
|
|
</div>
|
|
);
|
|
});
|
|
|
|
export default Khz;
|