FPSMS-frontend
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
 
 

14 rader
331 B

  1. "use client";
  2. import { useContext } from "react";
  3. import UploadContext from "./UploadProvider";
  4. const useUploadContext = () => {
  5. const context = useContext(UploadContext);
  6. if (!context) {
  7. throw new Error("useUploadContext must be used within an UploadProvider");
  8. }
  9. return context;
  10. };
  11. export default useUploadContext;