Skip to content

Instantly share code, notes, and snippets.

@mrzarkovic
Last active November 1, 2018 09:27
Show Gist options
  • Save mrzarkovic/9f29e0c2be03029156e87018fbab841f to your computer and use it in GitHub Desktop.
Save mrzarkovic/9f29e0c2be03029156e87018fbab841f to your computer and use it in GitHub Desktop.
React props
// Primer
var Title = React.createElement(
TitleComponent, {
title: 'Naslov',
className: 'main-title'
}
);
// Ili JSX
var Title = <TitleComponent title="Naslov" className="main-title"/>;
// U komponenti pristupamo prosleđenim vrednostima pomoću `this.props`:
render () {
return <h1 className={this.props.className}>{this.props.title}</h1>;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment