Skip to content

Instantly share code, notes, and snippets.

@arifkoken
Last active July 20, 2017 08:10
Show Gist options
  • Save arifkoken/3ead3381b715eec25c3418c8cf3e382c to your computer and use it in GitHub Desktop.
Save arifkoken/3ead3381b715eec25c3418c8cf3e382c to your computer and use it in GitHub Desktop.
Props Sample
class Kisi extends React.Component {
constructor(props) {
super(props);
}
render() {
return <div>Merhaba {this.props.isim}</div>
}
}
class Selamlama extends React.Component {
constructor(props) {
super(props);
}
render() {
return <div>
<Kisi isim="Arif"/>
<br/>
<Kisi isim="Umut"/>
</div>
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment