@maskedeng-tom/ssrsx
Version:
server side renderer with tsx
12 lines (11 loc) • 476 B
TypeScript
import { VirtualChildren } from 'ssrsxjsx/jsx-runtime';
import { SsrsxFunctionContext } from 'ssrsxjsx/jsx-parser';
declare const Route: ({ path, sensitive, element, children, _ssrsxFunctionContext }: {
path: string;
sensitive?: boolean | undefined;
element?: VirtualChildren;
children?: VirtualChildren;
_ssrsxFunctionContext?: SsrsxFunctionContext | undefined;
}) => import("ssrsxjsx/jsx-runtime").VirtualElement;
export default Route;
export { Route };