This package contain code for Isotope's SSR renderer implementation (@isotope/server
). For more details about its usage, check out the docs.
npm install @isotope/server
import { createStringView } from "@isotope/server";
const view = createStringView("body");
view.div();
const str = `${view}`; // <body><div></div></body>