html-react-parser icon indicating copy to clipboard operation
html-react-parser copied to clipboard

Allow React 19 as a peer dependency

Open atomrevival opened this issue 1 year ago • 3 comments

Problem

We're currently using this on a React 19 (RC) project and getting some peer dependencies. Seems that this works all right to just use the parser in a React 19 project, but haven't tested it conclusively.

Suggested Solution

{
  "peerDependencies": {
    "@types/react": "17 || 18",
    "react": "0.14 || 15 || 16 || 17 || 18 || 19"
  },
}

Keywords

React 19, upgrade, RC

atomrevival avatar Jul 05 '24 13:07 atomrevival