Skip to content

Instantly share code, notes, and snippets.

View JerryLeeCS's full-sized avatar
💬
Coding

jerrylee.io JerryLeeCS

💬
Coding
View GitHub Profile
@JerryLeeCS
JerryLeeCS / README.md
Created June 10, 2020 05:12 — forked from veltman/README.md
Particle tentacles

This got a little weird.

@JerryLeeCS
JerryLeeCS / ReactOnChangeStateBinding.js
Created August 11, 2018 19:50
ReactJS binding state to to input value
onChange(e) {
this.setState({ [e.target.name]: e.target.value });
}
<input
type="password"
placeholder="Password"
name="password"