import { View, ViewProps } from "react-native"; import { Text } from "@/components/common/Text"; import { Children, PropsWithChildren } from "react"; interface Props extends ViewProps { title: string; } export const ListSection: React.FC> = ({ children, title, ...props }) => { return ( {title} {children} ); };