File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
FrontEnd/tripscript-react/src Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ import Home from './pages/Home'
3
3
import Clientes from './pages/Clientes'
4
4
import Viagens from './pages/Viagens'
5
5
import Contato from './pages/Contato'
6
- import ResponsiveAppBar from './components/ResponsiveAppBar ' ;
6
+ import NavBar from './components/NavBar ' ;
7
7
import Footer from './components/Footer' ;
8
8
import { BrowserRouter as Router , Route , Routes } from 'react-router-dom' ;
9
9
import './styles/global.css' ;
@@ -13,7 +13,7 @@ function App() {
13
13
return (
14
14
< div className = "App" >
15
15
< Router >
16
- < ResponsiveAppBar />
16
+ < NavBar />
17
17
< Routes >
18
18
< Route path = '/' exact element = { < Home /> } />
19
19
< Route path = '/clientes' exact element = { < Clientes /> } />
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ import Nav from 'react-bootstrap/Nav';
3
3
import Navbar from 'react-bootstrap/NavBar' ;
4
4
import Container from 'react-bootstrap/Container' ;
5
5
6
- const ResponsiveAppBar = ( ) => {
6
+ const NavBar = ( ) => {
7
7
8
8
return (
9
9
< div >
@@ -23,4 +23,4 @@ const ResponsiveAppBar = () => {
23
23
) ;
24
24
} ;
25
25
26
- export default ResponsiveAppBar ;
26
+ export default NavBar ;
You can’t perform that action at this time.
0 commit comments