https://jsfiddle.net/3apqnhmw/
class Foo extends React.Component {
render() {
return <div>Foo</div>
}
}
class App extends React.Component {
render() {
return Foo
}
}
When App returns Foo instead of <Foo /> accidentally, Fiber does not catch this.
https://jsfiddle.net/3apqnhmw/
When
AppreturnsFooinstead of<Foo />accidentally, Fiber does not catch this.