ReactJs Tutorials
React Application Example
File name : index.php
<!DOCTYPE html>
<html>
<head>
<script src="https://unpkg.com/react@17/umd/react.development.js" crossorigin></script>
<script src="https://unpkg.com/react-dom@17/umd/react-dom.development.js" crossorigin></script>
<script src="https://unpkg.com/@babel/standalone/babel.min.js"></script>
</head>
<body>
<div id="mydiv"></div>
<script type="text/babel">
function Hello_ittutorial() {
return <h1>Hello Itechxpert!</h1>;
}
ReactDOM.render(<Hello_ittutorial />, document.getElementById('mydiv'))
</script>
</body>
</html>
File name : index.php
File name : index.php
File name : index.php