tsx-dom-ssr
Version:
A simple way to use tsx syntax to do async server-side-rendering.
6 lines (5 loc) • 297 B
TypeScript
import type { BaseProps, FC, ComponentChildren } from "./types";
import { InternalComponent } from "./internal";
export declare const Fragment: InternalComponent<BaseProps>;
export declare function jsx(tag: string | FC, props: BaseProps): ComponentChildren;
export { jsx as jsxs, jsx as jsxDEV };