Skip to content

Instantly share code, notes, and snippets.

View ch3rn4nq88's full-sized avatar
🏆
Focusing

ch3rn4nq88

🏆
Focusing
View GitHub Profile
@hartzis
hartzis / ImageUploadComponent.jsx
Last active April 3, 2023 18:09
React Image Upload with Preview
// https://codepen.io/hartzis/pen/VvNGZP
class ImageUpload extends Component {
constructor(props) {
super(props);
this.state = {
file: '',
imagePreviewUrl: ''
};
this._handleImageChange = this._handleImageChange.bind(this);
this._handleSubmit = this._handleSubmit.bind(this);