revert changes

This commit is contained in:
ammarahm-ed
2020-04-16 15:42:26 +05:00
parent 60d99e9335
commit ced71ed9cb
2 changed files with 5 additions and 3 deletions

View File

@@ -88,7 +88,8 @@ export const TopLevelNavigator = createStackNavigator(
},
Notebook: {
screen: Notebook,
}
},
},
{
initialRouteName: 'Home',

View File

@@ -1,6 +1,6 @@
import {createRef} from 'react';
import { createRef } from 'react';
import * as Animatable from 'react-native-animatable';
import {SafeAreaView} from 'react-native';
import { SafeAreaView } from 'react-native';
export const sideMenuRef = createRef();
export const inputRef = createRef();
@@ -9,3 +9,4 @@ export const sideMenuOverlayRef = createRef();
export const AnimatedSafeAreaView = Animatable.createAnimatableComponent(
SafeAreaView,
);