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