Last active
August 18, 2018 07:04
-
-
Save raidenz/2f1a4bd552b43af69c989edeb19eadb7 to your computer and use it in GitHub Desktop.
:medium: Dumb Compenent
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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