import { Algorithm } from "../types"; interface AlgorithmsProps { algorithms: Algorithm[]; } function Algorithms({ algorithms }: AlgorithmsProps) { return (
| Name | Version | Description | Tags |
|---|---|---|---|
| {algorithm.name} | {algorithm.version} | {algorithm.description} | {algorithm.tags.map((tag) => ( {tag} ))} |