0.1.3 • Published 6 months ago

rjsf-table v0.1.3

Weekly downloads
-
License
ISC
Repository
github
Last release
6 months ago

Screenshot

rjsf-table

Live Playground

A live playground is hosted on GitHub Pages.

How to install

npm install rjsf-table
yarn add rjsf-table

How to use

import React from "react";
import RJSFForm from "@rjsf/mui";
import { TableField } from "rjsf-table";

const App: React.FC<{}> = () => {
  return (
    <RJSFForm
      formData={yourFormData}
      schema={yourSchema}
      uiSchema={{
        "any-array-items-field": {
          "ui:widget": TableField,
        },
      }}
    />
  );
};