nexora
Version:
A lightweight, production-ready JavaScript library for building user interfaces, supporting JSX.
10 lines (9 loc) • 375 B
TypeScript
import { RouterNameSpace, VNode } from '../../core';
/**
* Experimental Router component
* @experimental
* @description - The Router component is used to manage the routing of the application.
* @param children - The children of the Router component.
* @returns The Router component.
*/
export declare function Router({ children }: RouterNameSpace.RouterProps): VNode;