mirror of
https://github.com/darkwire/darkwire.io.git
synced 2025-07-18 18:54:52 +00:00
16 lines
296 B
JavaScript
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)
|