/**
 * @fileoverview Rota /projetos/[id]/tecnologias — ecrã na feature.
 *
 * @route /projetos/[id]/tecnologias
 */

import { ProjetoTecnologiasScreen } from '@/features/projetos/projeto-tecnologias';

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

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