UNPKG

@wroud/vite-plugin-ssg

Version:

A Vite plugin for static site generation (SSG) with React. Renders React applications to static HTML for faster load times and improved SEO.

8 lines 289 B
import { type HTMLAttributes } from "react"; export interface BodyProps extends HTMLAttributes<HTMLBodyElement> { before?: React.ReactNode; after?: React.ReactNode; children?: React.ReactNode; } export declare const Body: React.FC<BodyProps>; //# sourceMappingURL=Body.d.ts.map