One of the little things one would have in mind when developing Components using React is that you might wonder if the developer who would consume the compoenent would pass in the required props. Let us consider a simple component here. export Navbar extends Component{ render (<div><h1>{this.props.title}</h1</div>) } The above Navbar components expects the props … Continue reading Managing Props as Component Developer