From 7f96da1555cd196b911cd1345fb2078c11246450 Mon Sep 17 00:00:00 2001 From: Atharva Date: Sun, 23 Feb 2025 07:28:35 +0530 Subject: [PATCH] Feat:Added Loading animation --- Frontend/src/components/FarmList.jsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Frontend/src/components/FarmList.jsx b/Frontend/src/components/FarmList.jsx index 60821fe..fdadb42 100644 --- a/Frontend/src/components/FarmList.jsx +++ b/Frontend/src/components/FarmList.jsx @@ -1,5 +1,6 @@ import { useEffect, useState } from "react"; import Td from "./Td"; +import Laoder from "./Laoder"; const FarmList = () => { const [data, setData] = useState([]); @@ -18,7 +19,7 @@ const FarmList = () => { return (
{loading ? ( -
Loading...
+ ) : (