added link to family page

This commit was merged in pull request #668.
This commit is contained in:
victorAnumudu
2024-03-22 12:45:34 +01:00
parent 9850cdd392
commit 3cd8b6e574
3 changed files with 40 additions and 5 deletions
+1 -1
View File
@@ -7,7 +7,7 @@ function DataIteration(props) {
{datas &&
datas?.length >= endLength &&
datas?.slice(startLength, endLength)
.map((value) => children({ datas: value }))}
.map((value, index) => children({ datas: value, index }))}
</>
);
}