Janic Duplessis 4 anni fa
parent
commit
9fc575fb26
1 ha cambiato i file con 1 aggiunte e 3 eliminazioni
  1. 1
    3
      src/index.tsx

+ 1
- 3
src/index.tsx Vedi File

@@ -3,9 +3,7 @@ import { StyleSheet, View, ViewProps } from 'react-native';
3 3
 import { EdgeInsets as EdgeInsetsT, InsetChangedEvent } from './SafeArea.types';
4 4
 import NativeSafeAreaView from './NativeSafeAreaView';
5 5
 
6
-export {
7
-  default as initialWindowSafeAreaInsets,
8
-} from './InitialWindowSafeAreaInsets';
6
+export { default as initialWindowSafeAreaInsets } from './InitialWindowSafeAreaInsets';
9 7
 
10 8
 export const SafeAreaContext = React.createContext<EdgeInsetsT | null>(null);
11 9