No, it is not overkill. React provides a very nice way to organize and develop code for a website and to separate components. However, if the website has no user interaction, you can simply pre-generate the website using server-side React rendering, and push the results up to S3/CloudFront.
Which major websites use React?
- Facebook (Partially)
- Instagram (Completely)
- Khan Academy (Partially)
- Codecademy (Partially)
- New York Times (Partially)
- Yahoo Mail (Completely)
- Dropbox's new photo and video gallery app Carousel (Completely)
Is react JS good for websites?
Yes. React is one of the most widely used libraries for front-end development. React has become the first choice for frontend because it gives developers the ability to work with a virtual browser (more friendly than the real browser).Dec 15, 2021
How do you create a single-page application in React?
- Create a react app in your desired location using the following command: ...
- Install react-router-dom for routing requests by executing the following command: ...
- Wrap the App component. ...
- Create a file named src/pages/HomePage.js with the following code: