aboutsummaryrefslogtreecommitdiff
path: root/vnext/src/components/Post.js
diff options
context:
space:
mode:
authorGravatar Vitaly Takmazov2018-06-28 17:01:56 +0300
committerGravatar Vitaly Takmazov2023-01-13 10:37:53 +0300
commitbec5843fd6059fe25dcdc3e91352882aa1caa4d8 (patch)
treefa458e205d411593ed61059192bd9dfe3bca00a9 /vnext/src/components/Post.js
parent96a7f550b4d27dbf8a50f6b692b4be9d734423e5 (diff)
cleanup class names
Diffstat (limited to 'vnext/src/components/Post.js')
-rw-r--r--vnext/src/components/Post.js10
1 files changed, 6 insertions, 4 deletions
diff --git a/vnext/src/components/Post.js b/vnext/src/components/Post.js
index 7bde7432..e8ebab5c 100644
--- a/vnext/src/components/Post.js
+++ b/vnext/src/components/Post.js
@@ -40,11 +40,13 @@ export default class Post extends React.Component {
}
render() {
return (
- <article>
- <MessageInput rows="7" text={this.state.body} data={{ mid: 0, timestamp: "0" }} onSend={this.postMessage}>
- *weather It's very cold today!
+ <div className="msgs">
+ <article className="msg-cont">
+ <MessageInput rows="7" text={this.state.body} data={{ mid: 0, timestamp: "0" }} onSend={this.postMessage}>
+ *weather It's very cold today!
</MessageInput>
- </article>
+ </article>
+ </div>
);
}
}