added dark mode function - not very functonal at this point
This commit is contained in:
@@ -71,7 +71,7 @@ const UserTable: React.FC<UserTableProps> = ({ users }) => {
|
|||||||
</th>
|
</th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody className="bg-white divide-y divide-gray-100">
|
<tbody className="bg-white dark:bg-black divide-y divide-gray-100">
|
||||||
{userList.map((user) => (
|
{userList.map((user) => (
|
||||||
<tr key={user.id} className="hover:bg-blue-50 transition">
|
<tr key={user.id} className="hover:bg-blue-50 transition">
|
||||||
<td className="px-4 py-2 whitespace-nowrap">{user.id}</td>
|
<td className="px-4 py-2 whitespace-nowrap">{user.id}</td>
|
||||||
|
Reference in New Issue
Block a user