@instructure/ui-code-editor
v10.26.4
Published
A UI component library made by Instructure Inc.
Maintainers
Keywords
Readme
ui-code-editor
A code editor component.
Components
The ui-code-editor package contains the following:
Installation
npm install @instructure/ui-code-editorUsage
import React from 'react'
import { CodeEditor } from '@instructure/ui-code-editor'
const MyCodeEditor = () => {
return (
<CodeEditor
label="code editor"
defaultValue='{"foo": "bar"}'
language="javascript"
readOnly
/>
)
}