LoaderContext import error
User Uncaught SyntaxError: The requested module '/src/contexts/LoaderContext.jsx' does not provide an export named 'LoaderContext' (at LoaderContextProvider.jsx:2:10) Assistant Alright, the error you are seeing: Uncaught SyntaxError: The requested module '/src/contexts/LoaderContext.jsx' does not provide an export named 'LoaderContext' means **inside your `LoaderContextProvider.jsx`**, you are trying to import `LoaderContext` from `LoaderContext.jsx`, **but `LoaderContext.jsx` doesn't actually export `LoaderContext`**. — […]