REACT append to body react - Net-Raft.com

Welcome aboard! We are happy you are here and wish you good net-raft!




Just a Web Code Solution
join us

append to body react


 157

REACT


0

<!DOCTYPE html>
<html>
<head>
<script src="https://fb.me/react-0.14.3.min.js"></script>
<script src="https://fb.me/react-dom-0.14.3.min.js"></script>
<style>
table, th, td {
border: 1px solid black;
}
</style>
</head>
<body>

<script type="text/javascript">

var div = React.DOM.div
var table = React.DOM.table
var tr = React.DOM.tr
var th = React.DOM.th
var td = React.DOM.td

var HelloWorldComponent = (
div(null,
table(null,
tr(null,
th(null, 'Month'),
th(null, 'Savings')
),
tr(null,
td(null, 'January'),
td(null, '$100')
),
tr(null,
td(null, 'February'),
td(null, '$80')
)
)
)
)
ReactDOM.render(HelloWorldComponent,document.getElementsByTagName('body')[0]);
</script>

</body>
</html>


By        
The power of the user (%)
19%

REACT


0

import React from 'react';

class App extends React.Component {
render() {
return (
<div>
Hello World!!!
</div>
);
}
}

export default App;


By        
The power of the user (%)
62%



The most helpful REACT solutions

How to get client ip address using react ?How to get client ip address using react ?REACT

Click to see more ...

  19.2K     421

how to get the type of a device using react ?how to get the type of a device using react ?REACT

Click to see more ...

  2.1K     220

create digital clock reactcreate digital clock reactREACT

Click to see more ...

  1.6K     141

country dropdown using reactcountry dropdown using reactREACT

Click to see more ...

  1.1K     127

create alarm clock using reactcreate alarm clock using reactREACT

Click to see more ...

  5.1K     116

How to get latitude and longitude using react/javascript ?How to get latitude and longitude using react/javascript ?REACT

Click to see more ...

  947     108

get client country reactget client country reactREACT

Click to see more ...

  711     82

get ip address reactget ip address reactREACT

Click to see more ...

  936     81

time ago reacttime ago reactREACT

Click to see more ...

  530     74

detect mobile device reactdetect mobile device reactREACT

Click to see more ...

  522     58

Welcome aboard!
We are happy you are here and
wish you good net-raft!