Skip to content

Instantly share code, notes, and snippets.

@mrzarkovic
Last active November 1, 2018 09:01
Show Gist options
  • Save mrzarkovic/98d78e1de582122edd7bd71c149088f0 to your computer and use it in GitHub Desktop.
Save mrzarkovic/98d78e1de582122edd7bd71c149088f0 to your computer and use it in GitHub Desktop.
New react JSX element
// JSX React element
var Title = <h1 className="main-title">Naslov</h1>;
// Isto kao da smo napisali:
var Title = React.createElement(
'h1',
{className: 'main-title'},
'Naslov'
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment