How to sanitize html on next.js 13 server side?
` import getData from '../../../firebase/firestore/getData'; import sanitizeHtml from 'sanitize-html';
export default async function Jbpregled() { const data = await getData();
return (
<div className="mt-4">
<div className="px-4 sm:px-8 max-w-5xl m-auto">
<h1 className="text-center font-semibold text-sm">Javne nabavke:</h1>
<ul className="border border-gray-200 rounded overflow-hidden shadow-md">
{data.map(item => <li key={item.id} className="px-4 py-2 bg-white hover:bg-sky-100 hover:text-sky-900 border-b last:border-none border-gray-200 transition-all duration-300 ease-in-out">
{sanitizeHtml(item.tekst)}
</li>)}
</ul>
</div>
</div>
)
}` Tryed this but still geting html tags...