InterviewSolution
Saved Bookmarks
| 1. |
What is MVC and where does React stand in it? |
|
Answer» MVC or Model-VIEW-Controller is a software design pattern mainly used in Web development for creating complex web-apps. This architecture comes from the traditional flow of web-application:
Now, React is considered as the View LAYER in the MVC model, as it is mainly used to create the UI. |
|