UNPKG

react-timeseries-table

Version:
20 lines (16 loc) 432 B
export default { highlightCodeBlocks() { const els = document.querySelectorAll("pre code"); for (let i = 0; i < els.length; i++) { if (!els[i].classList.contains("hljs")) { window.hljs.highlightBlock(els[i]); } } }, componentDidMount() { this.highlightCodeBlocks(); }, componentDidUpdate() { this.highlightCodeBlocks(); } };