Ideally you would show us an example of the json data, without seeing that this answer might not be that helpful.
You can use dangerouslySetInnerHTML to render a html string as if it were actually HTML:
const data = [
{ name: "<li>Marcus</li>", age: "<li>19 year old</li>" },
{ name: "<li>Jane</li>", age: "<li>22 year old</li>" }
];
export default function App() {
return (
<div className="App">
{data.map((v) => (
<>
<div dangerouslySetInnerHTML={{ __html: v.name }} />
<div dangerouslySetInnerHTML={{ __html: v.age }} />
</>
))}
</div>
);
}
Codesandbox:
https://codesandbox.io/s/wandering-dream-vhprd?file=/src/App.js