mirror of
https://github.com/rgrgogu/new_starr.git
synced 2026-09-27 00:12:54 +08:00
git-subtree-dir: apps/web git-subtree-mainline:eaa6d2276agit-subtree-split:459af9d46a
11 lines
328 B
Plaintext
11 lines
328 B
Plaintext
module SketchToolbar = {
|
|
@module("./SketchToolbar.jsx") @react.component
|
|
external make: (
|
|
~state: UseSketch.sketchState,
|
|
~onSetTool: UseSketch.tool => unit,
|
|
~onSetColor: UseSketch.color => unit,
|
|
~onClear: unit => unit,
|
|
~onSave: unit => unit,
|
|
~onClose: unit => unit,
|
|
) => React.element = "default"
|
|
} |