mirror of
https://github.com/streetwriters/notesnook.git
synced 2025-12-29 00:20:04 +01:00
10 lines
406 B
TypeScript
10 lines
406 B
TypeScript
import { createNavigationContainerRef } from '@react-navigation/native';
|
|
import { createRef } from 'react';
|
|
import { TextInput, View } from 'react-native';
|
|
import { TabsRef } from '../components/tabs';
|
|
|
|
export const inputRef = createRef<TextInput>();
|
|
export const rootNavigatorRef = createNavigationContainerRef();
|
|
export const tabBarRef = createRef<TabsRef>();
|
|
export const editorRef = createRef<View>();
|