From fe488e4dd0a94fc7bc93c27977da7c005dec693c Mon Sep 17 00:00:00 2001 From: joao_pedro Date: Mon, 20 Oct 2025 08:57:45 -0300 Subject: [PATCH] configuracoes iniciais --- src/components/utils/fetchErros/ModalErro.jsx | 53 +++++++++++++++++++ 1 file changed, 53 insertions(+) create mode 100644 src/components/utils/fetchErros/ModalErro.jsx diff --git a/src/components/utils/fetchErros/ModalErro.jsx b/src/components/utils/fetchErros/ModalErro.jsx new file mode 100644 index 0000000..4cc7b55 --- /dev/null +++ b/src/components/utils/fetchErros/ModalErro.jsx @@ -0,0 +1,53 @@ +import React from "react"; +import { useState } from "react"; + + +function ModalErro ({showModal, setShowModal}) { +//const [showModal, setShowModal] = useState() + + +return( + +
+ +{showModal ? + +
+ +
+
+
Atenção
+ +
+ +
+ +
+ +
+ +
+
+
+ : null +} +
+ +); + + +} + + + +export default ModalErro \ No newline at end of file