title comment and finish tap location in page doctor item

This commit is contained in:
Ehsan
2024-07-07 22:30:40 +03:30
parent 7315167325
commit cb214e67f1
5 changed files with 429 additions and 50 deletions
+3 -1
View File
@@ -2,6 +2,7 @@ import Link from "./Link"
import Share from "./Share"
import Title from "./Title"
import AboutDcotor from "./cards/AboutDcotor"
import Comments from "./cards/comments"
import LocationDoctor from "./cards/LocationDoctor"
function DetailDoctor({ doctor }) {
@@ -11,7 +12,8 @@ function DetailDoctor({ doctor }) {
<Title doctor={doctor} />
<Link />
<AboutDcotor doctor={doctor} />
<LocationDoctor />
<LocationDoctor doctor={doctor} />
<Comments doctor={doctor} />
</div>
)
}