react-timeseries-table
Version:
Declarative timeseries table
20 lines (16 loc) • 432 B
JSX
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();
}
};