How to convert RTF ANSI to HTML using Javascript or Any React text editor which support RTF format

I have to render RTF ANSI format data in the React Draft Wysiwyg / any other react editor.

we are getting API response as RTF ANSI format, which I have render in the rich text editor after any changes in the editor text, I have to covert into RTF and save into the DB, I haven’t found any solution or Editor which will meet my requirements.

Example RTF String: '{rtf1ansiansicpg1252deff0nouicompat{fonttbl{f0fnilfcharset0 Arial;}{f1fnilfcharset0 Arial Black;}{f2fnilfcharset0 Courier New;}{f3fnilfcharset0 Georgia;}{f4fnilfcharset0 Tahoma;}{f5fnilfcharset0 Times New Roman;}{f6fnilfcharset0 Verdana;}}{colortbl ;}{pardfs34qc Hello Worldsb70par}}'

This is how it look after render in the rich text editor.

enter image description here

I have tried with many converters but no help.

Example: https://stackblitz.com/edit/react-5avkvj?file=src/index.js

Thanks in advance.