import * as React from "react"; import { View, StyleSheet, Text } from "react-native"; import { filterAttrs } from "../helpers"; import type { SectionProps } from "./section.types"; import { setAttrs } from "../helpers"; function SectionComponent(props: SectionProps) { return ( {props.children} ); } export default SectionComponent;