Example 2 - outlined
A simple form with name, age and email.
Schema:
{}
fields]
:
[[
…
][
…
]Usage:
import React from "react";
import schema from "<your_schema.json>";
import MuiForms from "mui-forms";
function MySimpleForm() {
return (
<MuiForms
config={{
variant: "outlined"
}}
schema={schema}
onSubmit={() => {
// do nothing
}}
/>
);
}