SL

Slate React

slate-react

Tools for building completely customizable richtext editors with React.

Tables
canvas
contenteditable
docs
document
edit
editor
editable
html
immutable
markdown
Stars
1
Weekly
0
Open issues
0
Bundle
~60 kB

Installation

npm install slate-react

Code example

import { useSlateReact } from "slate-react";

const rows = [
  { id: 1, name: "Ada", role: "Engineer" },
  { id: 2, name: "Linus", role: "Maintainer" },
];

export function Example() {
  const table = useSlateReact({ data: rows, columns: [{ accessorKey: "name" }, { accessorKey: "role" }] });
  return <pre>{JSON.stringify(table, null, 2)}</pre>;
}

Pros & cons

Pros

  • Actively maintained by ianstormtaylor
  • 0 weekly downloads. Battle tested
  • First-class TypeScript definitions
  • MIT licensed

Considerations

  • Adds roughly ~60 kB to your bundle
  • Needs client-only rendering in SSR frameworks
  • Not supported in React Native
  • 0 open issues on GitHub

FAQs

Alternatives & similar libraries