please add the following method into your class to update this component when parent states get changed. ```JS static getDerivedStateFromProps(nextProps) { return { count: nextProps.start } } ``` Thanks