I’m working on a React application that receives a DOCX file as a base64 string from the backend. When I open this file in Google Docs, it displays edit suggestions/track changes clearly (as shown in the attached image). However, when I attempt to render the same DOCX using libraries like react-doc-viewer, the edit suggestions are not visible.
What I’ve Tried:
Converted base64 to downloadable DOCX file
Used multiple React libraries for DOCX rendering
Verified the issue is specifically with rendering track changes
Specific Requirements:
Render DOCX file with full track changes/edit suggestions in React UI
Preserve the formatting and edit history shown in Google Docs
Questions:
Which React library can render DOCX track changes?
Are there any JavaScript/web techniques to parse and display edit suggestions from DOCX files?
Additional Context:
Backend provides DOCX as base64 string
Goal is to display edits inline, similar to Google Docs view