import React from 'react' import { Card } from './Card' interface ParentSectionProps { title: string children: React.ReactNode className?: string tileId?: string } export function ParentSection({ title, children, className, tileId }: ParentSectionProps) { return (

{title}

{children}
) }