After. js enables Next. js-like data fetching with any React SSR app that uses
React Router.
var parent = document.createElement("div");
var child = document.createElement("p");
parent.appendChild(child);
child.after("Text");
console.log(parent.outerHTML);
// "<div><p></p>Text</div>"