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;
TheDadi, km-tr, angusd3v, kondei, danielcsorba and 8 more