import React from "react"; type BooleanDecoderProps = { r: any; }; const BooleanDecoder: React.FC = ({ r }) => ( {r.toString()} ); export default React.memo(BooleanDecoder);