UNPKG

4bnode

Version:

4bnode is a CLI-powered backend development platform with a built-in visual dashboard to generate, manage, and test Node.js/Express APIs faster.

8 lines (5 loc) 165 B
import React, { createContext, useContext } from "react"; export const AppContext = createContext(); export function useApp() { return useContext(AppContext); }