I try to for loop numbers of components, but it seem didn't work. I setState
the totalitem
to 5, and the output components only have 1.
_renderSomeItems(){
for(var i = 0; i < this.state.totalitem; i++){
return(
<SpecialItem key={i} />
);
}
}