import { Link } from "react-router-dom"; import { IconCalendar, IconUsers, IconZap } from "@/presentation/components/ui/Icons"; const actions = [ { to: "/jogos", label: "Ver tabela", Icon: IconCalendar }, { to: "/convocacoes", label: "Convocações", Icon: IconUsers }, { to: "/predict", label: "Palpite avulso", Icon: IconZap }, ] as const; export function QuickActions() { return (
{actions.map(({ to, label, Icon }) => ( {label} ))}
); }