--- import DataTable from './DataTable.astro'; export interface Props { title: string; category: string; content: any[]; } const { title, content } = Astro.props; ---

{title}

{content.length > 0 ? ( ) : (

No banks.

)}