In `js/components/commentslist.jsx`, export `VisibleCommentsList`:
In `js/components/commentslist.jsx`, export `VisibleCommentsList`:
```javascript
```javascript
export default VisibleCommentsList;
export default ConnectedComponent;
```
```
You can now remove the `constructor`/`componentDidMount` functions and change `this.state.comments.map` to `this.props.comments.map`. We're back to using props instead of component state:
You can now remove the `constructor`/`componentDidMount` functions and change `this.state.comments.map` to `this.props.comments.map`. We're back to using props instead of component state: