UNPKG

276 BTypeScriptView Raw
1import * as React from 'react';
2import type { SceneRendererProps } from './types';
3export default function SceneMap<T extends any>(scenes: {
4 [key: string]: React.ComponentType<T>;
5}): ({ route, jumpTo, position }: SceneRendererProps & {
6 route: any;
7}) => JSX.Element;