/src/index.js
xxxxxxxxxx
import ReactDOM from 'react-dom/client';
// هنا قمنا بإنشاء متغير وضعنا فيه جميع الوسوم التي نريد إضافتها
const myElement = (
<div>
<h1>Reactjs Tutorial</h1>
<p>This tutorial is made by harmash.</p>
</div>
);
// في العنصر الأساسي في الصفحة myElement هنا قمنا بإضافة الوسوم الموجودة في المتغير
const root = ReactDOM.createRoot(document.getElementById('root'));
root.render(myElement);
localhost:3000