import { Algorithm } from "../types"; import { Link } from "react-router-dom"; interface AlgorithmsProps { algorithms: Algorithm[]; } function Algorithms({ algorithms }: AlgorithmsProps) { return (

Compression Algorithms

{algorithms.map((algorithm, index) => ( ))}
Name Version Description Tags Source
{algorithm.name} {algorithm.version} {algorithm.description} {algorithm.tags.map((tag) => ( {tag} ))} {algorithm.source_file && ( View Source )}
); } export default Algorithms;