Replies: 2 comments 2 replies
-
@Sadam-MCA I can only reproduce it if I try using anonymous functions when declaring React components: // GOOD
export function Example(): JSX.Element {
return <Box>...</Box>;
}
-- vs --
// BAD
export const Example: React.FC = () => {
return <Box>...</Box>;
}; If you're using anonymous function, consider giving them names, otherwise you may bump into issues like this one. This particular issue is not related to the starter kit but Fast Refresh limitations I believe. Please provide more info if Hot Reloading (Fast Refresh) is not working under some other condition. Learn more |
Beta Was this translation helpful? Give feedback.
0 replies
-
Thank you for your response. The issues are not fixed yet. I have attached the video also |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Branch: master
Node: 14
I have updated the code on the JS and CSS file but it does not reflect on a webpage. The code will reflect When I refresh the page.
I have attached the video link: https://drive.google.com/drive/folders/1qkP1LPaY6cwuIw0fF6Wdj14X8O5UVdF0
Beta Was this translation helpful? Give feedback.
All reactions