routerTabs<S>( router: RouterApi, routes: readonly Readonly< { children?: readonly Readonly< (
{ id: string; screen: (params: Readonly<Record<string, string>>, context: Readonly<{ router: RouterApi; state: Readonly<S>; update: (updater: S | ((prev: Readonly<S>) => S)) => void; outlet: VNode | null; }>) => VNode; guard?: RouteGuard<...>; children?: readonly Readonly<...>[]; title?: string; keybinding?: string; }
)
, >[]; guard?: RouteGuard<S>; id: string; keybinding?: string; screen: (params: RouteParams, context: RouteRenderContext<S>) => VNode; title?: string; }, >[], props?: RouterTabsProps,): VNode
Render a tabs widget backed by route definitions.