From 4c3be38436719b8eac6f677db5536908f1f11c3e Mon Sep 17 00:00:00 2001 From: Matheus Albino Brunhara Date: Sat, 3 Sep 2022 16:47:38 -0300 Subject: [PATCH] =?UTF-8?q?Refatora=20p=C3=A1gina=20VeiculoCadastro?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/{CadastroVan.css => VeiculoCadastro.css} | 0 src/pages/{CadastroVan.tsx => VeiculoCadastro.tsx} | 6 +++--- 2 files changed, 3 insertions(+), 3 deletions(-) rename src/pages/{CadastroVan.css => VeiculoCadastro.css} (100%) rename src/pages/{CadastroVan.tsx => VeiculoCadastro.tsx} (98%) diff --git a/src/pages/CadastroVan.css b/src/pages/VeiculoCadastro.css similarity index 100% rename from src/pages/CadastroVan.css rename to src/pages/VeiculoCadastro.css diff --git a/src/pages/CadastroVan.tsx b/src/pages/VeiculoCadastro.tsx similarity index 98% rename from src/pages/CadastroVan.tsx rename to src/pages/VeiculoCadastro.tsx index d3eac23..dc2a42b 100644 --- a/src/pages/CadastroVan.tsx +++ b/src/pages/VeiculoCadastro.tsx @@ -27,12 +27,12 @@ import carsService from '../services/functions/carsService' import * as vansRoutes from '../services/api/vans'; -import "./CadastroVan.css"; +import "./VeiculoCadastro.css"; import { Color } from "@ionic/core"; import { closeToast } from "../services/utils"; import { PageHeader } from "../components/PageHeader"; -const CadastroVan: React.FC = () => { +const VeiculoCadastro: React.FC = () => { const history = useHistory(); const [showToast, setShowToast] = useState(false); @@ -371,4 +371,4 @@ const CadastroVan: React.FC = () => { ); }; -export default CadastroVan; +export default VeiculoCadastro;