0.1.3 • Published 6 months ago
rjsf-table v0.1.3
Screenshot
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,
},
}}
/>
);
};