/** * Project YooLearn * File index * Path app/components/Screen * Created by BRICE ZELE * Date: 26/08/2021 */ import React from 'react'; import {SafeAreaView, View} from 'react-native'; import {NetInfoBar} from './NetInfoBar'; import {Color} from "../config/Color"; export const ScreenComponent = React.forwardRef((props, ref) => ( {React.Children.map(props.children, child => React.cloneElement(child, {}), )} {/* {props.children} */} ));