Skip to content

Instantly share code, notes, and snippets.

@mrzarkovic
Last active November 1, 2018 09:03
Show Gist options
  • Save mrzarkovic/19d59ccbd2dfcb49db9985983afa012f to your computer and use it in GitHub Desktop.
Save mrzarkovic/19d59ccbd2dfcb49db9985983afa012f to your computer and use it in GitHub Desktop.
New functional component
function TitleComponent (props) {
return React.createElement(
'h1',
{className: 'main-title'},
props.title
);
// Ili JSX
return <h1 className="main-title">{props.title}</h1>;
}
// Komponentu koristimo kao:
<TitleComponent title="Prosledjeni Naslov" />
// Ispis u HTML-u:
<h1 class="main-title">Prosledjeni Naslov</h1>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment