Skip to content

Commit

Permalink
Moviendo las vistas a pages
Browse files Browse the repository at this point in the history
  • Loading branch information
Verzidee committed Mar 31, 2024
1 parent 1ec334c commit 9d4adc4
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 2 deletions.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React, { useState, useContext } from 'react';
import axios from 'axios';
import { Container, Typography, Button,TextField, Snackbar } from '@mui/material';
import { AuthContext } from '../AuthContext';
import { AuthContext } from '../../AuthContext';
import {Link, useNavigate} from "react-router-dom";

const Login = () => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { render, fireEvent, screen, waitFor, act } from '@testing-library/react'
import axios from 'axios';
import MockAdapter from 'axios-mock-adapter';
import Login from './Login';
import {AuthProvider} from "../AuthContext";
import {AuthProvider} from "../../AuthContext";
import {MemoryRouter} from "react-router-dom";

const mockAxios = new MockAdapter(axios);
Expand Down

0 comments on commit 9d4adc4

Please sign in to comment.