@react-navigation/native
Version:
React Native integration for React Navigation
15 lines (14 loc) • 571 B
TypeScript
import * as React from 'react';
import { ServerContextType } from './ServerContext';
import type { ServerContainerRef } from './types';
/**
* Container component for server rendering.
*
* @param props.location Location object to base the initial URL for SSR.
* @param props.children Child elements to render the content.
* @param props.ref Ref object which contains helper methods.
*/
declare const _default: React.ForwardRefExoticComponent<ServerContextType & {
children: React.ReactNode;
} & React.RefAttributes<ServerContainerRef>>;
export default _default;