list doctors

This commit is contained in:
Ehsan
2024-06-25 12:14:11 +03:30
parent 791e7c223a
commit a39805d315
5 changed files with 502 additions and 5 deletions
+5 -3
View File
@@ -1,6 +1,7 @@
import { Button } from "@mui/material"
import LocationD from "../icons/LocationD"
import SearchBar from "./search"
import { Button } from "@mui/material";
import LocationD from "../icons/LocationD";
import SearchBar from "./search";
import ListDoctors from "./ListDoctors";
function DoctorsPage() {
return (
@@ -15,6 +16,7 @@ function DoctorsPage() {
<Button>تست</Button>
</div>
</div>
<ListDoctors />
</div>
)
}