- React Tutorial
- React Home
- React Setup
- React Introduction
- React ES6
- React Render HTML
- React JSX
- React Components
- React Class
- React Props
- React Events
- React Conditional
- React Lists
- React Forms
- React Router
- React Memo
- React CSS Styling
- React Hooks
- What is a Hook?
- React useState
- React useEffect
- React useContext
- React useRef
- React useReducer
- React useCallback
- React useMemo
- React Custom Hooks
React Render HTML
In the world of React, there's a special function called ReactDOM.render() that does the heavy lifting. It's like a magical painter that puts your HTML on a web page.
ReactDOM.render()
This function needs two things:
- HTML content: What you want to show on the page.
- HTML element: Where you want to put that content.
Finding the Right Spot: React is smart. It knows where to put your content. Inside your React project, there's a "public" folder. In this folder, there's an "index.html" file, and guess what? It has a special spot marked with an ID: "root". This is where your content will be painted.
Example: Let's say you want to show a simple paragraph with "Hello". Here's how you tell React to do it:
// Ask React to find the 'root' spot and put a 'Hello' paragraph there
ReactDOM.render(<p>Hello</p>, document.getElementById('root'));
This is like saying, "Hey React, take this 'Hello' paragraph and paint it on the web page, right where you see 'root' in the 'index.html' file!" And voila, your "Hello" paragraph appears on the page. Easy, right?