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

Compression Algorithms

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