React: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 3: | Line 3: | ||
=Variables= | =Variables= | ||
<source lang="html4strict"> | <source lang="html4strict"> | ||
<syntaxhighlight lang="React" line='line'> | |||
const myVar = ( | const myVar = ( | ||
<h1>Love it</h1> | <h1>Love it</h1> | ||
); | ); | ||
</ | </syntaxhighlight> |
Revision as of 03:42, 23 October 2019
Quick Reference
Variables
<source lang="html4strict">
const myVar = (
<h1>Love it</h1>
);