feature/get-places-api #2

Merged
behnam merged 26 commits from feature/get-places-api into develop 2023-05-23 09:23:56 +00:00
2 changed files with 1 additions and 3 deletions
Showing only changes of commit 441d52edc6 - Show all commits

View File

@ -1,7 +1,5 @@
import React from "react";
export interface IUsersListVM {}
export type userListReturnType = {
selectedRowId: 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>
</Link>
);