Fix:fixed loader typo

This commit is contained in:
2025-02-23 10:23:27 +05:30
parent cc9c63d879
commit 9e04a4b734
+2 -2
View File
@@ -1,6 +1,6 @@
import { useEffect, useState } from "react"; import { useEffect, useState } from "react";
import Td from "./Td"; import Td from "./Td";
import Laoder from "./Laoder"; import Loader from "./Loader";
const FarmList = () => { const FarmList = () => {
const [data, setData] = useState([]); const [data, setData] = useState([]);
@@ -19,7 +19,7 @@ const FarmList = () => {
return ( return (
<div className="relative overflow-x-auto shadow-md sm:rounded-lg"> <div className="relative overflow-x-auto shadow-md sm:rounded-lg">
{loading ? ( {loading ? (
<Laoder></Laoder> <Loader></Loader>
) : ( ) : (
<table className="w-full text-sm text-left rtl:text-right text-gray-500 dark:text-gray-400"> <table className="w-full text-sm text-left rtl:text-right text-gray-500 dark:text-gray-400">
<thead className="text-xs text-gray-700 uppercase bg-gray-50 dark:bg-gray-700 dark:text-gray-400"> <thead className="text-xs text-gray-700 uppercase bg-gray-50 dark:bg-gray-700 dark:text-gray-400">