import React from "react"; import { Link } from "react-router-dom"; import { Game, GameCategoryPortals } from "@customTypes/Game"; interface GameCategoryProps { game: Game; cat: GameCategoryPortals; } const GameCategory: React.FC = ({ cat, game }) => { return ( {cat.category.name}
{cat.portal_count} ); }; export default GameCategory;