From 902724ea3bbe2265943e605699c327d67eebc94c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Brand=C3=A3o?= Date: Mon, 31 Jul 2023 14:29:44 -0300 Subject: [PATCH] Default name for routes --- src/App.tsx | 4 ++-- src/routes.tsx | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/App.tsx b/src/App.tsx index 95f4b8e..a03003e 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -1,11 +1,11 @@ import { CssBaseline } from '@mui/material'; -import Rotas from './routes'; +import RoutesApp from './routes'; function App() { return ( <> - + ); } diff --git a/src/routes.tsx b/src/routes.tsx index 77cf080..03e6547 100644 --- a/src/routes.tsx +++ b/src/routes.tsx @@ -2,7 +2,7 @@ import { BrowserRouter, Route, Routes } from 'react-router-dom'; import Home from './pages/Home/index'; import ConferencePage from './components/ConferencePage'; -function Rotas() { +function RoutesApp() { return ( @@ -19,4 +19,4 @@ function Rotas() { ); } -export default Rotas; +export default RoutesApp;