From 042b6c9a7d64b669219f2425a0fc2877ecf05a32 Mon Sep 17 00:00:00 2001 From: Casper Kevin Orich <40789332+orichcasperkevin@users.noreply.github.com> Date: Thu, 1 Feb 2024 04:58:12 +0300 Subject: [PATCH] doc: Update README.md (#626) Include a description for codemirror-merge, letting readers know what it is about and how to install the package before using it. --- core/README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/core/README.md b/core/README.md index 87f85b5e4..b14453c23 100644 --- a/core/README.md +++ b/core/README.md @@ -193,6 +193,12 @@ export default function App() { ``` ## Codemirror Merge +A component that highlights the changes between two versions of a file in a side-by-side view, highlighting added, modified, or deleted lines of code. + +```bash +npm install react-codemirror-merge --save +``` + ```jsx import CodeMirrorMerge from 'react-codemirror-merge';