[REF]: refactor some eslint issues

This commit is contained in:
behnamrhp 2023-05-19 18:48:23 +03:00
parent f80a38d4aa
commit 441d52edc6
2 changed files with 1 additions and 3 deletions

View File

@ -1,7 +1,5 @@
import React from "react"; import React from "react";
export interface IUsersListVM {}
export type userListReturnType = { export type userListReturnType = {
selectedRowId: string; selectedRowId: string;
setSelectedRowId: React.Dispatch<React.SetStateAction<string>>; setSelectedRowId: React.Dispatch<React.SetStateAction<string>>;

View File

@ -18,7 +18,7 @@ export default function Sidebar() {
: "" : ""
}`} }`}
> >
<img src={routesData[key].icon} className="mr-2" /> <img src={routesData[key].icon} alt="page icon" className="mr-2" />
<div>{routesData[key].title}</div> <div>{routesData[key].title}</div>
</Link> </Link>
); );