UNPKG

571 BTypeScriptView Raw
1import * as React from 'react';
2import { ServerContextType } from './ServerContext';
3import type { ServerContainerRef } from './types';
4declare const _default: React.ForwardRefExoticComponent<ServerContextType & {
5 children: React.ReactNode;
6} & React.RefAttributes<ServerContainerRef>>;
7/**
8 * Container component for server rendering.
9 *
10 * @param props.location Location object to base the initial URL for SSR.
11 * @param props.children Child elements to render the content.
12 * @param props.ref Ref object which contains helper methods.
13 */
14export default _default;