UNPKG

@p5-wrapper/react

Version:

A wrapper component that allows you to utilise P5 sketches within React apps.

6 lines (5 loc) 204 B
import type p5 from "p5"; import { type SketchProps } from "./SketchProps"; export type P5CanvasInstance<Props extends SketchProps = SketchProps> = p5 & { updateWithProps?: (props: Props) => void; };