import React, { ReactChild } from "react";
import { View, StyleSheet, ViewProps } from "react-native";

type Props = ViewProps & { children: ReactChild };

export function ModalChildrenWrapper({ children }: Props) {
  return <View style={StyleSheet.absoluteFill}>{children}</View>;
}
