Improving statuses, adding a composer drawer, which doesn't work yet
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
const CharacterCounter = React.createClass({
|
||||
propTypes: {
|
||||
text: React.PropTypes.string.isRequired
|
||||
},
|
||||
|
||||
render () {
|
||||
return (
|
||||
<span style={{ fontSize: '16px', cursor: 'default' }}>
|
||||
{this.props.text.length}
|
||||
</span>
|
||||
);
|
||||
}
|
||||
|
||||
});
|
||||
|
||||
export default CharacterCounter;
|
Reference in New Issue
Block a user