diff --git a/src/pages/Tracker/Tracker.tsx b/src/pages/Tracker/Tracker.tsx index 2bd4d30..03de100 100644 --- a/src/pages/Tracker/Tracker.tsx +++ b/src/pages/Tracker/Tracker.tsx @@ -20,7 +20,6 @@ import { TableRow, TablePagination, Link, - CircularProgress, Alert, Tabs, Tab, @@ -28,6 +27,8 @@ import { MenuItem, FormControl, InputLabel, + Skeleton, + Typography, } from "@mui/material"; import { useTheme } from "@mui/material/styles"; import { useGitHubAuth } from "../../hooks/useGitHubAuth"; @@ -279,11 +280,62 @@ const Home: React.FC = () => { )} {loading ? ( - - - - ) : ( - + + + + + + Title + Repository + State + Created + + + + + {[...Array(5)].map((_, index) => ( + + + + + + + + + + + + + + + + + + ))} + +
+
+
+) : !authError && !dataError && currentFilteredData.length === 0 ? ( + + + No Data Found + + + + Try adjusting filters or searching for another GitHub user. + + +) : ( + +