UNPKG

p5.wrapper

Version:

A lightweight declarative wrapper for p5.js that lets you build interactive sketches using Web Components or frameworks like Zikojs, React, VanJS...

5 lines (3 loc) 151 B
import { createContext, useContext, useRef } from "react"; const UIContext = createContext(null); const useMethode = () => useContext(UIContext);