Skip to content

Instantly share code, notes, and snippets.

View hql287's full-sized avatar
:octocat:
making dots

Hung Q. Le hql287

:octocat:
making dots
View GitHub Profile
@hql287
hql287 / Enhance.js
Created August 23, 2017 07:58 — forked from sebmarkbage/Enhance.js
Higher-order Components
import { Component } from "React";
export var Enhance = ComposedComponent => class extends Component {
constructor() {
this.state = { data: null };
}
componentDidMount() {
this.setState({ data: 'Hello' });
}
render() {
@hql287
hql287 / notification.jsx
Last active October 17, 2017 04:44
Self Closing Notification
class Notification extends Component {
constructor(props) {
super(props);
this.removeNoti = this.removeNoti.bind(this);
}
componentDidMount() {
this.timeout = setTimeout(this.removeNoti, 4000);
}