2019-05-27 16:06:01 -04:00

16 lines
296 B
JavaScript

import { connect } from 'react-redux'
import { sendEncryptedMessage } from 'actions'
import ChatInput from 'components/Chat'
const mapStateToProps = () => ({
})
const mapDispatchToProps = {
sendEncryptedMessage,
}
export default connect(
mapStateToProps,
mapDispatchToProps
)(ChatInput)