1.0.0 • Published 2 years ago

peraltafederico-test-1 v1.0.0

Weekly downloads
-
License
ISC
Repository
github
Last release
2 years ago

ℹ︎ About

The Fusebit Monaco jsonforms package enables you to easily integrate a monaco code editor to react with jsonforms.

📦 Install

npm i @fusebit/monaco-jsonforms

🔨 Usage

import { CodeBlock } from "@fusebit/monaco-jsonforms";

return (
  <CodeBlock
    defaultValue={props.defaultValue}
    onChange={(value: string) => props.handleChange(value)}
    label={props.label}
    isExpandable={props.isExpandable}
  />
);