"use client"; interface EcosystemRow { approach: string; examples: string; strengths: string; weaknesses: string; } interface EcosystemTableProps { data: EcosystemRow[]; } export function EcosystemTable({ data }: EcosystemTableProps) { return (
| Approach | Examples | Strengths | Weaknesses |
|---|---|---|---|
| {row.approach} | {row.examples} | {row.strengths} | {row.weaknesses} |