diff --git a/frontend/src/components/MapChat/NewMessage.js b/frontend/src/components/MapChat/NewMessage.js
new file mode 100644
index 00000000..0e03e7e1
--- /dev/null
+++ b/frontend/src/components/MapChat/NewMessage.js
@@ -0,0 +1,42 @@
+import React, { PropTypes, Component } from 'react'
+import { Picker } from 'emoji-mart'
+
+class NewMessage extends Component {
+ constructor(props) {
+ super(props)
+
+ this.state = {
+ //showEmojiPicker: false
+ showEmojiPicker: true
+ }
+ }
+
+ toggleEmojiPicker = () => {
+ this.setState({ showEmojiPicker: !this.state.showEmojiPicker })
+ }
+
+ render = () => {
+ return (
+
+ )
+ }
+}
+
+NewMessage.propTypes = {
+ textAreaProps: PropTypes.shape({
+ className: PropTypes.string,
+ ref: PropTypes.func,
+ placeholder: PropTypes.string,
+ value: PropTypes.string,
+ onChange: PropTypes.func,
+ onKeyUp: PropTypes.func,
+ onFocus: PropTypes.func,
+ onBlur: PropTypes.func
+ })
+}
+
+export default NewMessage
diff --git a/frontend/src/components/MapChat/index.js b/frontend/src/components/MapChat/index.js
index aa5b354e..496c5754 100644
--- a/frontend/src/components/MapChat/index.js
+++ b/frontend/src/components/MapChat/index.js
@@ -2,6 +2,7 @@ import React, { PropTypes, Component } from 'react'
import Unread from './Unread'
import Participant from './Participant'
import Message from './Message'
+import NewMessage from './NewMessage'
function makeList(messages) {
let currentHeader
@@ -143,14 +144,16 @@ class MapChat extends Component {
this.messagesDiv = div}>
{makeList(messages)}
-