UNPKG

json-joy

Version:

Collection of libraries for building collaborative editing apps.

7 lines (6 loc) 288 B
// biome-ignore lint: lint/style/useImportType import * as React from 'react'; export const FormattingEdit = (props) => { const Edit = props.formatting.behavior.data().Edit; return Edit ? React.createElement(Edit, { ...props }) : React.createElement("div", null, "no editor"); };