Answer the question
In order to leave comments, you need to log in
How to add a component to an html element?
There is markup markup, which I receive from the server. Is it possible to insert React components there?
prepareMoreBlocks = (arrId) => {
if (typeof document !== "undefined") {
let readMoreBlocks = document.getElementsByClassName("readmore-snippet-container");
for (var i = 0; i < readMoreBlocks.length; i++) {
let linkEl = readMoreBlocks[i].querySelector('a');
if (linkEl) {
//arrId.push(linkEl.dataset.id);
//console.log(linkEl.);
linkEl.appendChild(<Badge
className={'news-card-item__list-badges-item'}
type={'sound-wave'}
//key={badge}
/>)
}
}
}
};
Failed to execute 'appendChild' on 'Node': parameter 1 is not of type 'Node'.
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question