import { Card, CardHeader, CardMedia, CardContent, Grid, Link, Table, TableBody, TableRow, TableCell, } from "@mui/material"; export interface Example { title: string; creatorLink: string; creatorName: string; image: string; playLink: string; model: string; iterations: number; controls: string; hints: string; } interface ExamplesGridProps { examples: Example[]; } export default function ExamplesGrid({ examples }: ExamplesGridProps) { return ( {examples.map((example, index) => ( by{" "} {example.creatorName} } /> Play {" "} on CodeSandbox Model {example.model} Iterations {example.iterations} Controls {example.controls} Hints {example.hints}
))}
); }