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

View on GitHub
src/components/admin/values/EmailFormValues.jsx

Summary

Maintainability
A
0 mins
Test Coverage
export const EmailSingleValues = [
    {
        label: "To:",
        type: "text",
        name: "to",
        data: []
    },
    {
        label: "Subject:",
        type: "text",
        name: "subject",
        data: []
    },
    {
        label: "Message:",
        type: "text",
        multiline: true,
        rows: 5,
        name: "text",
        variant: "outlined",
        data: []
    }
];