UNPKG

@p5-wrapper/react

Version:

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

8 lines (7 loc) 258 B
import { ReactNode } from "react"; import { type Sketch } from "./Sketch"; import { type SketchProps } from "./SketchProps"; export type InputProps<Props extends SketchProps = SketchProps> = Props & { sketch?: Sketch<Props>; fallback?: ReactNode; };