microsoft / TypeScript-React-Starter

A starter template for TypeScript and React with a detailed README describing how to use the two together.
MIT License
11.09k stars 1.21k forks source link

Fix state initialization #206

Open pleopardi opened 6 years ago

pleopardi commented 6 years ago

Without this PR, when props.enthusiasmLevel is set to 0, the expression props.enthusiasmLevel || 1 always equals to 1. Therefore the render doesn't throw as expected and one of the tests fails.