Skip to content

Commit

Permalink
arreglar mas fallos de importacion
Browse files Browse the repository at this point in the history
  • Loading branch information
bidof committed Mar 8, 2024
1 parent e9ea90b commit 30a1143
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 7 deletions.
4 changes: 2 additions & 2 deletions webapp/src/components/navbar/NavBar.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React ,{useContext} from 'react';
import '../styles/Navbar.css';
import './Navbar.css';
import { Link } from 'react-router-dom';
import { AuthContext } from './authcontext';
import { AuthContext } from '../authcontext';
import { Dropdown, Nav } from 'react-bootstrap';

const Navbar = () => {
Expand Down
8 changes: 3 additions & 5 deletions webapp/src/index.js
Original file line number Diff line number Diff line change
@@ -1,12 +1,10 @@
import React from 'react';
import ReactDOM from 'react-dom/client';
import './index.css';
import App from './App';
import reportWebVitals from './reportWebVitals';
import Footer from './components/Footer';
import Navbar from './components/NavBar';
import AddUser from './components/AddUser';
import Login from './components/Login';
import Navbar from './components/navbar/NavBar';
import AddUser from './components/adduser/AddUser';
import Login from './components/login/Login';
import { AuthProvider } from './components/authcontext';
import { BrowserRouter as Router, Routes, Route } from 'react-router-dom';
import CssBaseline from '@mui/material/CssBaseline';
Expand Down

0 comments on commit 30a1143

Please sign in to comment.