mirror of
https://github.com/zhigang1992/react-navigation.git
synced 2026-02-11 22:33:32 +08:00
7 lines
181 B
TypeScript
7 lines
181 B
TypeScript
import * as React from 'react';
|
|
import { StackCardInterpolationProps } from '../types';
|
|
|
|
export default React.createContext<StackCardInterpolationProps | undefined>(
|
|
undefined
|
|
);
|