Can't find any recent official info if any of the three options below is allowed?
constructor(props){
this.state={
item:<SomeItem/>,
item1:()=><SomeItem/>,
item2:SomeItem
}
}
I found this answer but it references an old link from web archive which says:
What Shouldn’t Go in State? ... React components: Build them in render() based on underlying props and state.
But that link doesn't say why that is a bad idea, if it will introduce bugs, etc.