'use client';

/**
 * @route /projetos/[id]/planejamento/acl
 * Checklist ACL tipológico (TASK-PSC-036) — não é editor de permissões runtime.
 */

import React from 'react';
import { useParams } from 'next/navigation';

import { ACL_CHECKLIST_CONFIG } from '@/features/projetos/implantacao-checklist/checklistConfigs';
import { ProjetoImplantacaoChecklistScreen } from '@/features/projetos/implantacao-checklist/ProjetoImplantacaoChecklistScreen';

export default function ArquiteturaPermissoesPage() {
    const params = useParams();
    const projetoId = params?.id as string;

    return (
        <ProjetoImplantacaoChecklistScreen projetoId={projetoId} config={ACL_CHECKLIST_CONFIG} />
    );
}
