UNPKG

@p5-wrapper/react

Version:

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

4 lines (3 loc) 217 B
import { type P5CanvasInstance } from "./P5CanvasInstance"; import { type SketchProps } from "./SketchProps"; export type Sketch<Props extends SketchProps = SketchProps> = (instance: P5CanvasInstance<Props>) => void;