aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/components/GameCategory.tsx
blob: 2bb6d429603a01894f85df6807f394d88112953a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
import React from "react";
import { Link } from "react-router-dom";

import { Game, GameCategoryPortals } from "@customTypes/Game";
import "@css/Games.css";

interface GameCategoryProps {
  game: Game;
  cat: GameCategoryPortals;
}

const GameCategory: React.FC<GameCategoryProps> = ({ cat, game }) => {
  return (
    <Link
      className="games-page-item-body-item"
      to={"/games/" + game.id + "?cat=" + cat.category.id}
    >
      <div>
        <span className="games-page-item-body-item-title">
          {cat.category.name}
        </span>
        <br />
        <span className="games-page-item-body-item-num">
          {cat.portal_count}
        </span>
      </div>
    </Link>
  );
};

export default GameCategory;