first commit

This commit is contained in:
Olu Amey
2023-01-16 13:09:45 -05:00
commit a6ebce376c
271 changed files with 39454 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
import React from "react";
function DataIteration(props) {
const { datas, startLength, endLength, children } = props;
return (
<>
{datas &&
datas.length >= endLength &&
datas
.slice(startLength, endLength)
.map((value) => children({ datas: value }))}
</>
);
}
export default DataIteration;