What are some limitations of things you shouldn’t do in the component’s render method? Technology Community › Category: React › What are some limitations of things you shouldn’t do in the component’s render method? 0 Vote Up Vote Down VietMX Staff asked 4 years ago You cannot modify the component’s state (with setState), nor interact with the browser (do that in componentDidMount). Render should be a pure function.