Fix:Replaced 'class' with 'className' in many files

This commit is contained in:
2025-02-23 00:52:53 +05:30
parent 27955fc264
commit cbff64906b
12 changed files with 204 additions and 127 deletions
+22 -22
View File
@@ -3,57 +3,57 @@ import { Link } from "react-router-dom";
const Logs = () => {
return (
<>
<div class="relative overflow-y-hidden">
<table class="w-full text-sm text-left rtl:text-right text-gray-500 dark:text-gray-400 border">
<thead class="text-xs text-gray-700 uppercase bg-gray-50 dark:bg-gray-700 dark:text-gray-400">
<div className="relative overflow-y-hidden">
<table className="w-full text-sm text-left rtl:text-right text-gray-500 dark:text-gray-400 border">
<thead className="text-xs text-gray-700 uppercase bg-gray-50 dark:bg-gray-700 dark:text-gray-400">
<tr>
<th scope="col" class="px-6 py-3">
<th scope="col" className="px-6 py-3">
Product name
</th>
<th scope="col" class="px-6 py-3">
<th scope="col" className="px-6 py-3">
Color
</th>
<th scope="col" class="px-6 py-3">
<th scope="col" className="px-6 py-3">
Category
</th>
<th scope="col" class="px-6 py-3">
<th scope="col" className="px-6 py-3">
Price
</th>
</tr>
</thead>
<tbody>
<tr class="bg-white border-b dark:bg-gray-800 dark:border-gray-700 border-gray-200">
<tr className="bg-white border-b dark:bg-gray-800 dark:border-gray-700 border-gray-200">
<th
scope="row"
class="px-6 py-4 font-medium text-gray-900 whitespace-nowrap dark:text-white"
className="px-6 py-4 font-medium text-gray-900 whitespace-nowrap dark:text-white"
>
Apple MacBook Pro 17"
</th>
<td class="px-6 py-4">Silver</td>
<td class="px-6 py-4">Laptop</td>
<td class="px-6 py-4">$2999</td>
<td className="px-6 py-4">Silver</td>
<td className="px-6 py-4">Laptop</td>
<td className="px-6 py-4">$2999</td>
</tr>
<tr class="bg-white border-b dark:bg-gray-800 dark:border-gray-700 border-gray-200">
<tr className="bg-white border-b dark:bg-gray-800 dark:border-gray-700 border-gray-200">
<th
scope="row"
class="px-6 py-4 font-medium text-gray-900 whitespace-nowrap dark:text-white"
className="px-6 py-4 font-medium text-gray-900 whitespace-nowrap dark:text-white"
>
Microsoft Surface Pro
</th>
<td class="px-6 py-4">White</td>
<td class="px-6 py-4">Laptop PC</td>
<td class="px-6 py-4">$1999</td>
<td className="px-6 py-4">White</td>
<td className="px-6 py-4">Laptop PC</td>
<td className="px-6 py-4">$1999</td>
</tr>
<tr class="bg-white dark:bg-gray-800">
<tr className="bg-white dark:bg-gray-800">
<th
scope="row"
class="px-6 py-4 font-medium text-gray-900 whitespace-nowrap dark:text-white"
className="px-6 py-4 font-medium text-gray-900 whitespace-nowrap dark:text-white"
>
Magic Mouse 2
</th>
<td class="px-6 py-4">Black</td>
<td class="px-6 py-4">Accessories</td>
<td class="px-6 py-4">$99</td>
<td className="px-6 py-4">Black</td>
<td className="px-6 py-4">Accessories</td>
<td className="px-6 py-4">$99</td>
</tr>
</tbody>{" "}
</table>{" "}