Lambda-School-Labs/startup-grant-database-fe

View on GitHub
src/components/contact/values/ContactFormValues.jsx

Summary

Maintainability
A
0 mins
Test Coverage
export const EmailFormValues = [
    {
        label: "Your Email",
        type: "text",
        name: "from",
        data: []
    },
    {
        label: "Full Name",
        type: "text",
        name: "subject",
        data: []
    },
    {
        label: "How can we help you?",
        type: "text",
        multiline: true,
        rows: 5,
        name: "text",
        variant: "outlined",
        data: []
    }
];