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.
|
- "use client";
- import { useContext } from "react";
- import UploadContext from "./UploadProvider";
-
- const useUploadContext = () => {
- const context = useContext(UploadContext);
- if (!context) {
- throw new Error("useUploadContext must be used within an UploadProvider");
- }
- return context;
- };
-
- export default useUploadContext;
|