mirror of
https://github.com/tapframe/NuvioStreaming.git
synced 2026-03-11 17:45:38 +00:00
6 lines
No EOL
239 B
TypeScript
6 lines
No EOL
239 B
TypeScript
import { NavigationProp, useNavigation } from '@react-navigation/native';
|
|
import { RootStackParamList } from '../types/navigation';
|
|
|
|
export const useRootNavigation = () => {
|
|
return useNavigation<NavigationProp<RootStackParamList>>();
|
|
};
|