import type React from "react"; import { View } from "react-native"; import { Text } from "@/components/common/Text"; export const SettingsSection: React.FC<{ title?: string; children: React.ReactNode; }> = ({ title, children }) => ( {title ? ( {title} ) : null} {children} );