소스 검색

Export SafeAreaContext for use with contextType (#3)

Brent Vatne 4 년 전
부모
커밋
fe17cd0143
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1
    1
      src/index.tsx

+ 1
- 1
src/index.tsx 파일 보기

@@ -3,7 +3,7 @@ import { StyleSheet } from 'react-native';
3 3
 import { EdgeInsets, InsetChangedEvent } from './SafeArea.types';
4 4
 import NativeSafeAreaView from './NativeSafeAreaView';
5 5
 
6
-const SafeAreaContext = React.createContext<EdgeInsets | null>(null);
6
+export const SafeAreaContext = React.createContext<EdgeInsets | null>(null);
7 7
 
8 8
 export interface SafeAreaViewProps {
9 9
   children?: React.ReactNode;