Skip to content

Instantly share code, notes, and snippets.

@raidenz
Last active August 18, 2018 07:04
Show Gist options
  • Save raidenz/2f1a4bd552b43af69c989edeb19eadb7 to your computer and use it in GitHub Desktop.
Save raidenz/2f1a4bd552b43af69c989edeb19eadb7 to your computer and use it in GitHub Desktop.
:medium: Dumb Compenent
import React from 'react'
const Name = (props) => {
return(
<div>
dumb Component
<div>
name: {props.name}
</div>
<input name="name" value={props.name} onChange={props.handleChange}/>
</div>
)
}
export default Name
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment