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