@dgui/react-router-native
Version:
Native Router Components for a boilerplate React GUI
8 lines (7 loc) • 388 B
TypeScript
import { type FunctionComponent, type PropsWithChildren } from 'react';
import { type NativeRouterProps } from 'react-router-native';
declare const ReactRouterNativeProvider: FunctionComponent<ReactRouterNativeProviderProps>;
export default ReactRouterNativeProvider;
export type ReactRouterNativeProviderProps = NativeRouterProps & PropsWithChildren<{
readonly router?: boolean;
}>;