React.js: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 14: | Line 14: | ||
cd my-app | cd my-app | ||
npm start | npm start | ||
</syntaxhighlight> | |||
== Code == | |||
=== Elements === | |||
<syntaxhighlight lang="js"> | |||
const root = React.createElement( | |||
"div", | |||
{}, | |||
React.createElement( | |||
"h1", | |||
{}, | |||
"Hello, world!", | |||
React.createElement( | |||
"a", | |||
{ href: "mailto:tome@email.com" }, | |||
React.createElement("h1", {}, "React In Action"), | |||
React.createElement("em", {}, "...and now it really is!") | |||
) | |||
) | |||
); | |||
</syntaxhighlight> | </syntaxhighlight> |
Revision as of 01:05, 27 November 2017
Installation
npm install -g create-react-app
You first application
Create an application
create-react-app my-app
Running an appication
cd my-app
npm start
Code
Elements
const root = React.createElement(
"div",
{},
React.createElement(
"h1",
{},
"Hello, world!",
React.createElement(
"a",
{ href: "mailto:tome@email.com" },
React.createElement("h1", {}, "React In Action"),
React.createElement("em", {}, "...and now it really is!")
)
)
);