Files
sigpro-ui/docs/demo_editor.md
natxocc 910c6ab3c7
All checks were successful
Deploy Docs to Synology / deploy (push) Successful in 4s
Before repair nav components
2026-04-25 11:24:39 +02:00

396 B

Editor

const content = $('<p><strong>Hello</strong> world!</p>');

mount(
  div({ class: 'flex flex-col gap-4' }, [
    Editor({
      value: content,
      placeholder: 'Escribe tu historia…',
      class: 'max-w-2xl'
    })
  ]),
  '#demo-editor'
);