@tanstack/react-router
Version:
Modern and scalable routing for React applications
15 lines (14 loc) • 487 B
TypeScript
import * as React from 'react';
export declare const Match: React.NamedExoticComponent<{
matchId: string;
}>;
export declare const MatchInner: React.NamedExoticComponent<{
matchId: string;
}>;
/**
* Render the next child match in the route tree. Typically used inside
* a route component to render nested routes.
*
* @link https://tanstack.com/router/latest/docs/framework/react/api/router/outletComponent
*/
export declare const Outlet: React.NamedExoticComponent<object>;