Skip to content

Latest commit

 

History

History

range-editor

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 

Range editor

An editing interface for ranges, with support for custom behaviours.

<RangeEditor
  manifestId="https://..."
  manifestJson={
    {
      /* ... */
    }
  }
  onAddRange={(range, index) => {
    /* ... */
  }}
  onChangeRange={(range, index) => {
    /* ... */
  }}
  onRemoveRange={(range, index) => {
    /* ... */
  }}
  onReorderRanges={newOrder => {
    /* ... */
  }}
/>