Become a member
Sign in
Michal Piekarczyk
Michal Piekarczyk

Michal Piekarczyk

11 Following
7 Followers
  • Profile

  • Highlights

Highlighted by Michal Piekarczyk

See more

From Do React Hooks Replace Redux? by Eric Elliott

const [nameInput, setName] = useState(name);
const [emailInput, setEmail] = useState(email);

From React, SVG Images and the Webpack Loader to Make Them Play Nice by Paige Niedringhaus

class Card extends Component(){
return(
<div>
< /* other UI stuff here */ >
<SVG src={KeyImage} />
</div>
)
}