Skip to content

Instantly share code, notes, and snippets.

View ariabuckles's full-sized avatar
🍵
(boba) => <code />

Aria Buckles ariabuckles

🍵
(boba) => <code />
View GitHub Profile
componentDidMount: function() {
socket.on('update', function (comment) {
this.setState({data: this.state.data.push(comment)});
}.bind(this));
},