Fast Refresh had to perform a full reload when you edited a file. It may be because:
The file you're editing might have other exports in addition to a React component.
Your React component is an anonymous function.
The component name is in camelCase and not PascalCase, for example
textField
instead of
TextField
.