UNPKG

@p5-wrapper/react

Version:

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

7 lines (6 loc) 282 B
import { type P5WrapperProps } from "./P5WrapperProps"; import { type Sketch } from "./Sketch"; import { type SketchProps } from "./SketchProps"; export type P5WrapperPropsWithSketch<Props extends SketchProps = SketchProps> = P5WrapperProps<Props> & { sketch: Sketch<Props>; };