fixed some bugs and clean up
This commit was merged in pull request #99.
This commit is contained in:
@@ -5,9 +5,8 @@ function DataIteration(props) {
|
||||
return (
|
||||
<>
|
||||
{datas &&
|
||||
datas.length >= endLength &&
|
||||
datas
|
||||
.slice(startLength, endLength)
|
||||
datas?.length >= endLength &&
|
||||
datas?.slice(startLength, endLength)
|
||||
.map((value) => children({ datas: value }))}
|
||||
</>
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user