1.0.0 • Published 11 months ago

plugin-file v1.0.0

Weekly downloads
-
License
MIT
Repository
-
Last release
11 months ago

File picker for leva

API

pluginFile({
    onChange: (file: File) => void,
    accept?: string,
})
import { pluginFile } from "plugin-file";

function onChange(file: File) {
  // do something with file
}

const controls = useControls({
  File: pluginFile({ onChange }),
});
1.0.0

11 months ago