Please see the video to see how the adding calendar event interaction now works with this new component.
{F193659}
To test interaction on local machine:
Replace `this.setState({ pickerOpen: true });` on line 213 of `web/calendar/day.react.js`
```
this.props.pushModal(
<ThreadPickerModal
name="Chats"
onClose={this.props.popModal}
createNewEntry={this.createNewEntry}
/>,
);
```
import ThreadPickerModal with `import ThreadPickerModal from '../modals/threads/thread-picker-modal.react';`
And add the `popModal` function by adding this code in the `ConnectedDay` component and `Day` component props:
{F193665}
{F193666}