import React from 'react'; import { ViewProps } from 'react-native'; import ScreenFooterNativeComponent from '../fabric/ScreenFooterNativeComponent'; /** * Unstable API */ function ScreenFooter(props: ViewProps) { return ; } type FooterProps = { children?: React.ReactNode; }; export function FooterComponent({ children }: FooterProps) { return {children}; } export default ScreenFooter;