Changeset 4e5cf92 for frontend/src/pages
- Timestamp:
- 01/27/26 13:04:08 (6 months ago)
- Branches:
- main
- Children:
- 77e572b, b70fbeb
- Parents:
- 0f71490
- Location:
- frontend/src/pages
- Files:
-
- 2 added
- 4 moved
-
AllUsers.tsx (added)
-
LandingPage.tsx (moved) (moved from frontend/src/LandingPage.tsx )
-
Login.tsx (moved) (moved from frontend/src/Login.tsx ) (1 diff)
-
Nav.tsx (moved) (moved from frontend/src/Nav.tsx ) (1 diff)
-
Register.tsx (moved) (moved from frontend/src/Register.tsx ) (1 diff)
-
UserDetailView.tsx (added)
Legend:
- Unmodified
- Added
- Removed
-
frontend/src/pages/Login.tsx
r0f71490 r4e5cf92 1 1 import { useState } from "react"; 2 2 import { useNavigate } from "react-router-dom"; 3 import axiosInstance, { scheduleTokenRefresh } from ". /api/axiosInstance";4 import { useAuth } from ". /context/authContext";5 import type { User } from ". /types";3 import axiosInstance, { scheduleTokenRefresh } from "../api/axiosInstance"; 4 import { useAuth } from "../context/authContext"; 5 import type { User } from "../utils/types"; 6 6 7 7 const Login = () => { -
frontend/src/pages/Nav.tsx
r0f71490 r4e5cf92 1 1 import { Link } from "react-router-dom"; 2 import axiosInstance, { baseURL } from ". /api/axiosInstance";3 import Logo from ". /assets/logo-finkwave.png";4 import { useAuth } from ". /context/authContext";2 import axiosInstance, { baseURL } from "../api/axiosInstance"; 3 import Logo from "../assets/logo-finkwave.png"; 4 import { useAuth } from "../context/authContext"; 5 5 6 6 const Nav = () => { -
frontend/src/pages/Register.tsx
r0f71490 r4e5cf92 1 1 import { useEffect, useState } from "react"; 2 2 import { useNavigate } from "react-router"; 3 import axiosInstance, { scheduleTokenRefresh } from ". /api/axiosInstance";4 import { useAuth } from ". /context/authContext";5 import type { User } from ". /types";3 import axiosInstance, { scheduleTokenRefresh } from "../api/axiosInstance"; 4 import { useAuth } from "../context/authContext"; 5 import type { User } from "../utils/types"; 6 6 7 7 const Register = () => {
Note:
See TracChangeset
for help on using the changeset viewer.
