Skip to content

Instantly share code, notes, and snippets.

View thecodearrow's full-sized avatar
🎯
Focusing

Prashanth Vaidya thecodearrow

🎯
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);