Changeset dc30259 for frontend/src/pages/AllUsers.tsx
- Timestamp:
- 02/07/26 15:34:33 (5 months ago)
- Branches:
- main
- Children:
- 8a47b30
- Parents:
- ebdd3d4
- File:
-
- 1 edited
-
frontend/src/pages/AllUsers.tsx (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
frontend/src/pages/AllUsers.tsx
rebdd3d4 rdc30259 2 2 import { useNavigate } from "react-router-dom"; 3 3 import axiosInstance from "../api/axiosInstance"; 4 import LoadingSpinner from "../components/LoadingSpinner"; 4 5 5 6 interface User { … … 39 40 }; 40 41 41 if (users.length == 0) return <div className="p-6">Loading...</div>; 42 if (users.length == 0) { 43 return <LoadingSpinner />; 44 } 42 45 if (error) { 43 46 return (
Note:
See TracChangeset
for help on using the changeset viewer.
