React: Difference between revisions

From bibbleWiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 4: Line 4:
<source lang="html4strict">
<source lang="html4strict">


<syntaxhighlight lang="React" line='line'>
<source lang="React" line='line'>
  const myVar = (
  const myVar = (
   <h1>Love it</h1>
   <h1>Love it</h1>
  );
  );
</syntaxhighlight>
</source>

Revision as of 05:14, 23 October 2019

Quick Reference

Variables

<source lang="React" line='line'>
 const myVar = (
   <h1>Love it</h1>
 );