import { View, Text } from "react-native"; interface SectionCardProps { title: string; children: React.ReactNode; accentClass?: string; } export function SectionCard({ title, children, accentClass }: SectionCardProps) { return ( {title} {children} ); }