From 8d900a625b88020e4f0a514b0f4c489367aa798c Mon Sep 17 00:00:00 2001 From: Henrique-Sousa <29417378+Henrique-Sousa@users.noreply.github.com> Date: Fri, 3 Apr 2026 18:16:29 -0300 Subject: [PATCH] =?UTF-8?q?style:=20adiciona=20linha=20em=20branco=20separ?= =?UTF-8?q?ando=20fun=C3=A7=C3=B5es?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ui/src/containers/DashboardContainer/index.jsx | 1 + 1 file changed, 1 insertion(+) diff --git a/ui/src/containers/DashboardContainer/index.jsx b/ui/src/containers/DashboardContainer/index.jsx index 3e1c7bb..1afc166 100644 --- a/ui/src/containers/DashboardContainer/index.jsx +++ b/ui/src/containers/DashboardContainer/index.jsx @@ -25,6 +25,7 @@ const items = [ function DashboardContainer() { const [isCadastrarMedicosModalOpen, setIsCadastrarMedicosModalOpen] = useState(false); const [isLoginModalOpen, setIsLoginModalOpen] = useState(false); + const showCadastrarMedicosModal = () => { setIsCadastrarMedicosModalOpen(true); };