import * as React from "react"; import { Text } from "react-native"; import { useEffect } from "react"; import type { AwaiterProps } from "./awaiter.types"; function Awaiter(props: AwaiterProps) { useEffect(() => {}, []); return <>{props.children}; } export default Awaiter;