I've created a new react app using the following command:
npx create-react-app app-name.
- opened the newly created app in VSCode.
- started the app by running the command:
npm start
app started correctly.
When i try to make any change in index.js
(add a new paragraph or text),the changes are not reflected on the UI.The changes appear only when i refresh page by my self.
Is this problem related to FAST-REFRESH,and how can it be fixed?