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