radish
Version:
Radish is a React-based static site generator that outputs plain HTML and CSS.
14 lines (13 loc) • 384 B
TypeScript
import type { ReactNode } from "react";
import { HtmlProps, BodyProps } from "react-helmet-async";
interface Props {
children: ReactNode;
html?: HtmlProps;
body?: BodyProps;
}
export default function Head(props: Props): JSX.Element;
export declare function HeadProvider(props: Props): JSX.Element;
export declare namespace HeadProvider {
var context: {};
}
export {};