React Lesson #1 - Hello World! (JSX)
Basic HTML structure of any React app is:
index.html
<!DOCTYPE html>
<html lang="en">
<head>
<title>JSX</title>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<div id="root"></div>
<script src="../src/index.js" type...
ratansharma.co.in1 min read