import React, { useEffect } from 'react'; export default function CodeBlock({ code }) { const language = 'javascript' useEffect(() => { setTimeout(() => { if (window.Prism) { Prism.highlightAll(); } }, 0) }, [code, language]); return (
{code}
);
}