import * as React from "react"; import { View, Text } from "react-native"; import type { FragmentProps } from "./fragment.types"; function FragmentComponent(props: FragmentProps) { return {props.children}; } export default FragmentComponent;