UNPKG

@ducor/react

Version:

admin template ui interface

10 lines (9 loc) 306 B
import { createContext, useContext } from "react"; export const AdminContext = createContext(undefined); export const useAdmin = () => { const context = useContext(AdminContext); if (!context) { throw new Error("useAdmin must be used within an AdminProvider"); } return context; };