Registration Form Edit (opens in a new tab)
Schema Edit (opens in a new tab)
{}
fields]
:
[[
…
][
…
]Usage Edit (opens in a new tab)
import React from "react";
import MuiForms from "mui-forms";
import schema from "./schema.json";
function RegistrationForm() {
return (
<MuiForms
schema={schema}
onSubmit={() => {
// handle code
}}
/>
);
}