/**
 * @route /projetos/[id]/software/repositorio-git
 * Legado: `/repositorio-git` → aqui (T77).
 */

import { ProjetoSoftwareRepositorioGitScreen } from '@/features/projetos/projeto-software-repositorio-git';

type PageProps = { params: { id: string } };

export default function RepositorioGitProjetoPage({ params }: PageProps) {
    return <ProjetoSoftwareRepositorioGitScreen projetoId={params.id} />;
}
