Simple Forms
Outlined

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
            }}
        />
    );
}

Star us at github

© Copyright 2023 MuiForms