You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
React's new Fast Refresh wants the components exported by react-svg-loader to have a name. Here's the full error:
Anonymous arrow functions cause Fast Refresh to not preserve local component state.
Please add a name to your function, for example:
Before
export default () => <div />;
After
const Named = () => <div />;
export default Named;
The text was updated successfully, but these errors were encountered:
React's new Fast Refresh wants the components exported by
react-svg-loader
to have a name. Here's the full error:The text was updated successfully, but these errors were encountered: