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