import type { CSSProperties } from "react"; import { Link, useParams } from "react-router-dom"; import { Panel } from "../components/ui"; import { getChampionById } from "../features/champions/championLookup"; export function ChampionDetailPage() { const { championId } = useParams(); const champion = getChampionById(championId); if (!champion) { return (
{champion.shortDescription}
Abilities, skins, progression, lore, and build recommendations can be added as independent modules.
Back to overview