Customer Feedback Form Edit (opens in a new tab)
Schema Edit (opens in a new tab)
"root"}
:
{1 Items"fields"]
:
[14 Items[
…
]3 Items[
…
]3 Items[
…
]3 Items[
…
]3 Items[
…
]2 ItemsUsage Edit (opens in a new tab)
import React from "react";
import MuiForms from "mui-forms";
import schema from "./schema.json";
function CustomerFeedbackForm() {
return (
<MuiForms
config={{
variant: "outlined",
size: "small"
}}
schema={schema}
onSubmit={() => {
// handle code
}}
/>
);
}