librqbit 9.0.0

The main library used by rqbit torrent client. The binary is just a small wrapper on top of it.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
import { TorrentListItem } from "../api-types";
import { TorrentCardContent } from "./TorrentCardContent";

export const TorrentCard: React.FC<{
  torrent: TorrentListItem;
  hidden?: boolean;
}> = ({ torrent, hidden }) => {
  return (
    <div className={hidden ? "hidden" : ""}>
      <TorrentCardContent torrent={torrent} />
    </div>
  );
};