/**
 * @route /projetos/[id]/planejamento/auth-security
 */

import { ProjetoPlanejamentoAuthSecurityScreen } from '@/features/projetos/projeto-planejamento-auth-security';

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

export default function AuthSecurityPage({ params }: PageProps) {
    if (!params.id) return null;
    return <ProjetoPlanejamentoAuthSecurityScreen projetoId={params.id} />;
}
