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